Don't store current CDN paths in Interface.json at present

This commit is contained in:
David Rowe 2020-09-23 22:15:40 +12:00
parent c6ba42b7d6
commit 32efb2443e

View file

@ -5574,6 +5574,9 @@ void Application::saveSettings() const {
getMyAvatar()->saveData();
PluginManager::getInstance()->saveSettings();
// Don't save external resource paths until such time as there's UI to select or set alternatives. Otherwise new default
// values won't be used unless Interface.json entries are manually remove or Interface.json is deleted.
/*
auto bucketEnum = QMetaEnum::fromType<ExternalResource::Bucket>();
auto externalResource = ExternalResource::getInstance();
@ -5585,6 +5588,7 @@ void Application::saveSettings() const {
Setting::Handle<QString> url(setting, externalResource->getBase(bucket));
url.set(externalResource->getBase(bucket));
}
*/
}
bool Application::importEntities(const QString& urlOrFilename, const bool isObservable, const qint64 callerId) {