Skip to content

Commit

Permalink
RoyalRoad: fix title getting cut of on html encoded char (é, ", ')
Browse files Browse the repository at this point in the history
  • Loading branch information
error7404 committed Aug 2, 2024
1 parent 8c16e54 commit 0139dd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/english/royalroad.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class RoyalRoad implements Plugin.PluginBase {
},
ontext(data) {
if (isNovelName) {
novel.name = data;
novel.name = novel.name + data;
}
if (isAuthorName) {
novel.author = data;
Expand Down

0 comments on commit 0139dd7

Please sign in to comment.