1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2025-06-20 19:41:46 +02:00

Split baseUrl and topic

This commit is contained in:
Philipp Heckel 2022-04-05 23:33:07 -04:00
parent 4a5f34801a
commit 83bb9951b0
3 changed files with 36 additions and 22 deletions
web/src/app

View file

@ -127,7 +127,7 @@ class Api {
if (response.status !== 200) {
throw new Error(`Unexpected server response ${response.status}`);
}
const stats = response.json();
const stats = await response.json();
console.log(`[Api] Stats`, stats);
return stats;
}