diff options
| -rw-r--r-- | public/index.html | 1 | ||||
| -rw-r--r-- | webAO/client.ts | 2 | ||||
| -rw-r--r-- | webAO/client/fetchLists.ts | 9 |
3 files changed, 0 insertions, 12 deletions
diff --git a/public/index.html b/public/index.html index 89e7740..5078682 100644 --- a/public/index.html +++ b/public/index.html @@ -77,7 +77,6 @@ <link rel="stylesheet" type="text/css" href="styles/master.css" /> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> <link rel="icon" href="favicon.ico" /> - <link rel="manifest" href="manifest.json" /> <script> // Check that service workers are supported if ("serviceWorker" in navigator) { diff --git a/webAO/client.ts b/webAO/client.ts index 8c842f8..40884ff 100644 --- a/webAO/client.ts +++ b/webAO/client.ts @@ -145,7 +145,6 @@ class Client extends EventEmitter { sender: ISender; checkUpdater: any; _lastTimeICReceived: any; - manifest: string[]; viewport: Viewport; partial_packet: boolean; temp_packet: string; @@ -203,7 +202,6 @@ class Client extends EventEmitter { this.musics = []; this.musics_time = false; this.callwords = []; - this.manifest = []; this.resources = getResources(AO_HOST, theme); this.selectedEmote = -1; this.selectedEvidence = -1; diff --git a/webAO/client/fetchLists.ts b/webAO/client/fetchLists.ts index d391fac..2f2fd59 100644 --- a/webAO/client/fetchLists.ts +++ b/webAO/client/fetchLists.ts @@ -58,15 +58,6 @@ export const fetchEvidenceList = async () => { } }; -export const fetchManifest = async () => { - try { - const manifestdata = await request(`${AO_HOST}manifest.txt`); - client.manifest = manifestdata.split(/\r\n|\n\r|\n|\r/); - } catch (err) { - console.warn("there was no manifest.txt file"); - } -}; - export const fetchExtensions = async () => { try { const extensiondata = await request(`${AO_HOST}extensions.json`); |
