Skip to content

Commit

Permalink
Fix inverted browser_viewable
Browse files Browse the repository at this point in the history
  • Loading branch information
qsniyg committed Oct 23, 2024
1 parent ffeda9d commit 5b11c5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/userscript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132730,7 +132730,7 @@ var $$IMU_EXPORT$$;
use_head = true;
}

let browser_viewable = use_head; // incidentally the same
let browser_viewable = !use_head; // incidentally the same

var old_source = source;

Expand Down
2 changes: 1 addition & 1 deletion userscript.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -117993,7 +117993,7 @@ var $$IMU_EXPORT$$;
if (openb === "newtab" || openb === "newtab_bg" || openb === "download" || openb === "copylink") {
use_head = true;
}
var browser_viewable = use_head; // incidentally the same
var browser_viewable = !use_head; // incidentally the same
var old_source = source;
var incomplete_image = false;
var incomplete_video = false;
Expand Down

0 comments on commit 5b11c5a

Please sign in to comment.