1
Fork 0

fix a silly issue :3

This commit is contained in:
Ashley 2022-11-16 14:59:30 +01:00
parent a615ed855c
commit 416ced03ec

View file

@ -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");