mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 15:08:26 +01:00
bump version :3
This commit is contained in:
parent
43fe08eb0e
commit
63de51fae9
1 changed files with 12 additions and 8 deletions
|
@ -20,8 +20,8 @@ const {
|
|||
|
||||
const pkg = require("../../../package.json");
|
||||
|
||||
const ver = "v23.0101-cMrvBa-stable-git";
|
||||
const versionnumber = "110";
|
||||
const ver = "v23.0107-cMrvBa-stable-git";
|
||||
const versionnumber = "111";
|
||||
|
||||
const response = {
|
||||
pt_version: ver,
|
||||
|
@ -139,6 +139,7 @@ module.exports = function (app, config, renderTemplate) {
|
|||
});
|
||||
|
||||
app.get("/api/instances.json", async (req, res) => {
|
||||
try {
|
||||
const url = `https://codeberg.org/Ashley/poketube/raw/branch/main/instances.json`;
|
||||
|
||||
let f = await modules
|
||||
|
@ -147,6 +148,9 @@ module.exports = function (app, config, renderTemplate) {
|
|||
.then((json) => JSON.parse(json));
|
||||
|
||||
res.json(f);
|
||||
} catch {
|
||||
res.json("error while fetching instances");
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue