Feature/#48 migrate to typescript #151

Merged
Serraniel merged 30 commits from feature/#48-migrate-to-typescript into develop 2020-12-30 17:24:49 +01:00
Showing only changes of commit 866d11a3d3 - Show all commits

View file

@ -27,7 +27,7 @@ class Configuration {
callback(this.settingsCache.get(key));
}
else {
// TODO see commenz
// TODO see comment
// OOOPS // currently all settings are default true. This isn´t a problem but there should be much better soloutions after migration to typescript....
getGlobalStorageProvider().getDataAsBoolean(key, true, value => {
this.settingsCache.set(key, value);
@ -45,4 +45,4 @@ export function getGlobalConfiguration() {
}
return __globalConfig;
}
}