feat: support for follow packs
This commit is contained in:
parent
cdab9aa19e
commit
b21855c294
27 changed files with 384 additions and 24 deletions
|
|
@ -1,10 +1,10 @@
|
|||
import {
|
||||
ALLOWED_FILTER_KINDS,
|
||||
DEFAULT_FAVICON_URL_TEMPLATE,
|
||||
DEFAULT_NIP_96_SERVICE,
|
||||
ExtendedKind,
|
||||
MEDIA_AUTO_LOAD_POLICY,
|
||||
NOTIFICATION_LIST_STYLE,
|
||||
SUPPORTED_KINDS,
|
||||
StorageKey,
|
||||
TPrimaryColor
|
||||
} from '@/constants'
|
||||
|
|
@ -165,7 +165,7 @@ class LocalStorageService {
|
|||
|
||||
const showKindsStr = window.localStorage.getItem(StorageKey.SHOW_KINDS)
|
||||
if (!showKindsStr) {
|
||||
this.showKinds = SUPPORTED_KINDS
|
||||
this.showKinds = ALLOWED_FILTER_KINDS
|
||||
} else {
|
||||
const showKindsVersionStr = window.localStorage.getItem(StorageKey.SHOW_KINDS_VERSION)
|
||||
const showKindsVersion = showKindsVersionStr ? parseInt(showKindsVersionStr) : 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue