Skip to content

Commit 6a226d2

Browse files
committed
Fixed "Star 9 piese" IQ Puzzle status resetting on update
The actual name of this one is "Star 9 piese ", but I think that the Markdown library automatically trims node values, and the identifier matching was failing.
1 parent 9d15ec6 commit 6a226d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/recipes/iq_puzzles/IQPuzzlesRecipe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export class IQPuzzlesRecipe implements Recipe {
7272
? cleanedImageLinkMatch.groups.cleanedLink
7373
: '';
7474

75-
return new IQPuzzle(name, cleanedImageLink);
75+
return new IQPuzzle(name.trim(), cleanedImageLink);
7676
}
7777
);
7878
}

0 commit comments

Comments
 (0)