diff options
Diffstat (limited to 'src/state/models/content/feed-source.ts')
-rw-r--r-- | src/state/models/content/feed-source.ts | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/state/models/content/feed-source.ts b/src/state/models/content/feed-source.ts index 79747d6fb..156e3be3b 100644 --- a/src/state/models/content/feed-source.ts +++ b/src/state/models/content/feed-source.ts @@ -142,7 +142,8 @@ export class FeedSourceModel { } async unsave() { - if (this.type !== 'feed-generator') { + // TODO TEMPORARY — see PRF's comment in content/list.ts togglePin + if (this.type !== 'feed-generator' && this.type !== 'list') { return } try { @@ -179,7 +180,13 @@ export class FeedSourceModel { name: this.displayName, uri: this.uri, }) - return this.rootStore.preferences.removePinnedFeed(this.uri) + + if (this.type === 'list') { + // TODO TEMPORARY — see PRF's comment in content/list.ts togglePin + return this.unsave() + } else { + return this.rootStore.preferences.removePinnedFeed(this.uri) + } } } |