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

Merge pull request #62 from gochan-org/deepsource-fix-ab5c995a

Replace  `==`/`!=` with `===`/`!==`
This commit is contained in:
Eggbertx 2022-08-13 16:08:33 -07:00 committed by GitHub
commit eda67081fa
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 msgbox = document.getElementById("qr" + msgboxID);
if(msgbox == null)
if(msgbox === null)
msgbox = document.getElementById(msgboxID);
let selected = selectedText();
let lines = selected.split("\n");