Skip to content

Commit

Permalink
Merge pull request #757 from RisingGlitch/main
Browse files Browse the repository at this point in the history
fixes for the fixes
  • Loading branch information
IncognitoTGT authored Jun 4, 2024
2 parents f3b6dd1 + 9f840bd commit 4814396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/assets/scripts/s.js
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ function newCustomTheme() {
alert("Name cannot contain a comma.")
return
}
if (!localStorage.getItem("customThemes")) {
if (localStorage.getItem("customThemes")) {
localStorage.setItem("customThemes", localStorage.getItem("customThemes") + "," + themeName)
} else {
localStorage.setItem("customThemes", themeName)
Expand Down

0 comments on commit 4814396

Please sign in to comment.