瀏覽代碼

1 line code to fix title

Title kept showing the title and artist after you left the station
johand199 9 年之前
父節點
當前提交
065e0ea257
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      app/client/scripts/routes.js

+ 2 - 1
app/client/scripts/routes.js

@@ -10,11 +10,12 @@ Router.onBeforeAction(function() {
             if (res) {
                 self.render('banned');
             } else {
+                document.title = 'Musare';
                 next();
             }
         });
     } else {
-        next();
+       this.next();
     }
 });