mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 08:18:29 +01:00
fix a silly issue :3
This commit is contained in:
parent
37ae9bab7e
commit
eebe9e7fd2
1 changed files with 3 additions and 4 deletions
|
@ -33,18 +33,17 @@ function init(app, config, rendertemplate) {
|
|||
.then((res) => res.text())
|
||||
.then((json) => JSON.parse(json));
|
||||
|
||||
if (f.versionnumber === api) {
|
||||
if (f.vernum == api) {
|
||||
console.log("[UPDATE DAEMON] PokeTube is up to date!");
|
||||
}
|
||||
|
||||
if ( api !== f.versionnumber) {
|
||||
if (f.vernum != api) {
|
||||
console.warn(
|
||||
"[UPDATE DAEMON] PokeTube is out of date! please re-clone the poketube repo :p "
|
||||
);
|
||||
}
|
||||
})();
|
||||
|
||||
|
||||
if (Math.random() < 0.5) {
|
||||
initlog("https://poketube.fun/watch?v=lpiB2wMc49g");
|
||||
}
|
||||
|
@ -72,7 +71,7 @@ function init(app, config, rendertemplate) {
|
|||
|
||||
initlog("Loading static pages");
|
||||
require("../init/pages-static.js")(app, config, rendertemplate);
|
||||
initlog("loaded static pages");
|
||||
initlog("Loaded static pages");
|
||||
initlog("Loading main pages");
|
||||
require("../init/pages-404-and-main.js")(app, config, rendertemplate);
|
||||
initlog("Loaded main pages");
|
||||
|
|
Loading…
Reference in a new issue