1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-24 23:50:11 +01:00

Fix board removal on 404, splice not pop @bui

This commit is contained in:
8chan 2014-12-20 07:00:26 -08:00
parent 8b701ef10a
commit 13c75110b9

View File

@ -37,7 +37,7 @@ $page = <<<EOT
$.each(faves, function(k, v) {
if ((window.location.pathname === '/' + v + '/') || (window.location.pathname === '/' + v)) {
faves.pop(v);
faves.splice(k, 1);
localStorage.favorites = JSON.stringify(faves);
alert('As /' + v + '/ no longer exists, it has been removed from your favorites.');