Skip to content

Commit

Permalink
fix authorpage not using custom UI
Browse files Browse the repository at this point in the history
  • Loading branch information
nyakotey committed Feb 3, 2022
1 parent 3ce1c6e commit b589a13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loadCustomUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function loadTheme() {
function loadAppStatusBarTheme() {
let primaryColor = localStorage.getItem("primaryColor");
if(!["",null,undefined].includes(primaryColor)){
$("[content='#7b68ee']").forEach(e=>e.setAttribute("content",primaryColor));
document.querySelectorAll("[content='#7b68ee']").forEach(e=>e.setAttribute("content",primaryColor));
}
}

Expand Down

0 comments on commit b589a13

Please sign in to comment.