switched to navigation-react-native

seems much simpler, but now i may need some other deps...
This commit is contained in:
austinried
2021-06-23 22:19:25 +09:00
parent c7d65e0a58
commit 17fe1b9850
22 changed files with 356 additions and 3268 deletions

View File

@@ -78,7 +78,7 @@ export class SubsonicApiClient {
}
const url = `${this.address}/rest/${method}?${query}`;
console.log(url);
// console.log(url);
return url;
}
@@ -98,7 +98,7 @@ export class SubsonicApiClient {
const response = await fetch(this.buildUrl(method, params));
const text = await response.text();
console.log(text);
// console.log(text);
const xml = new DOMParser().parseFromString(text);
if (xml.documentElement.getAttribute('status') !== 'ok') {