1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-03 23:56:22 -07:00

Replace ==/!= with ===/!==

This commit is contained in:
deepsource-autofix[bot] 2022-08-13 23:08:08 +00:00 committed by GitHub
parent b774433065
commit 958786de37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -412,7 +412,7 @@ export function quote(no) {
let msgboxID = "postmsg"; let msgboxID = "postmsg";
let msgbox = document.getElementById("qr" + msgboxID); let msgbox = document.getElementById("qr" + msgboxID);
if(msgbox == null) if(msgbox === null)
msgbox = document.getElementById(msgboxID); msgbox = document.getElementById(msgboxID);
let selected = selectedText(); let selected = selectedText();
let lines = selected.split("\n"); let lines = selected.split("\n");