Skip to content

Commit

Permalink
sdk: unprivatize settings method
Browse files Browse the repository at this point in the history
  • Loading branch information
koush committed Sep 15, 2023
1 parent 86a91df commit e243d99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/src/storage-settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export class StorageSettings<T extends string> implements Settings {
this.device.onDeviceEvent(ScryptedInterface.Settings, undefined);
}

private getItemInternal(key: T, setting: StorageSetting, rawDevice?: boolean): any {
getItemInternal(key: T, setting: StorageSetting, rawDevice?: boolean): any {
if (!setting)
return this.device.storage.getItem(key);
const readDefaultValue = () => {
Expand Down

0 comments on commit e243d99

Please sign in to comment.