diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-02-03 12:11:17 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-02-03 14:26:56 +0900 |
commit | 02e8b55884fd530dee03613d79adad8aa9180b61 (patch) | |
tree | 7379e14ef3da8164c6af806aba2dbe7f40c4927a /src/background/controllers | |
parent | 23c59c9747f83d70df6fc630b1ce99639029dbe7 (diff) |
Rename setting repositories and refactor
Diffstat (limited to 'src/background/controllers')
-rw-r--r-- | src/background/controllers/SettingController.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/background/controllers/SettingController.ts b/src/background/controllers/SettingController.ts index 8d05852..26edc07 100644 --- a/src/background/controllers/SettingController.ts +++ b/src/background/controllers/SettingController.ts @@ -12,7 +12,7 @@ export default class SettingController { } getSetting(): Promise<Settings> { - return this.settingUseCase.get(); + return this.settingUseCase.getCached(); } async reload(): Promise<any> { |