Handling duplicate /submit in URL and adding local server to manifest.json
parent
53d1767a2d
commit
5ba118cfa2
|
@ -12,7 +12,8 @@
|
||||||
|
|
||||||
"host_permissions": [
|
"host_permissions": [
|
||||||
"http://localhost:5000/*",
|
"http://localhost:5000/*",
|
||||||
"https://zpdai.rkg.lv/*"
|
"https://zpdai.rkg.lv/*",
|
||||||
|
"http://127.0.0.1:5000/*"
|
||||||
],
|
],
|
||||||
|
|
||||||
"content_security_policy": {
|
"content_security_policy": {
|
||||||
|
|
|
@ -98,7 +98,9 @@ function generateAndSaveId() {
|
||||||
|
|
||||||
async function checkSessionStatus() {
|
async function checkSessionStatus() {
|
||||||
try {
|
try {
|
||||||
const statusUrl = 'http://127.0.0.1:5000/api/session_status';
|
const baseUrl = serverUrl.split('/submit')[0];
|
||||||
|
const statusUrl = `${baseUrl}/api/session_status`;
|
||||||
|
|
||||||
const response = await fetch(statusUrl, {
|
const response = await fetch(statusUrl, {
|
||||||
headers: { 'X-Password': password }
|
headers: { 'X-Password': password }
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue