fix: fetch manifest from <server>/manifest.json

This commit is contained in:
2026-08-17 19:41:08 +08:00
parent 2d2dee5e51
commit a35a5018b7
2 changed files with 10 additions and 7 deletions
@@ -131,7 +131,7 @@ class MainActivity : Activity() {
override fun setServerUrl(url: String) {
prefs.edit().putString("server_url", url).apply()
if (::webAppRepository.isInitialized) webAppRepository.setManifestUrl(url)
if (::webAppRepository.isInitialized) webAppRepository.setServerUrl(url)
}
}