diff options
author | Eric Bailey <git@esb.lol> | 2023-11-06 20:51:46 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-06 18:51:46 -0800 |
commit | 7ffbee18b578cc7f6d5eff6b7b4740eeb278d387 (patch) | |
tree | f796a32dc7ad7a4fa60c90ebe8d0805eee159167 /src/state/models/content/list.ts | |
parent | a4baf14e4b9516c3611c1d8d988603994ea8a09f (diff) | |
download | voidsky-7ffbee18b578cc7f6d5eff6b7b4740eeb278d387.tar.zst |
Fix removal of old lists from saved feeds (#1823)
* Fix removal of old lists from saved feeds * Fix saved feed removal race condition
Diffstat (limited to 'src/state/models/content/list.ts')
-rw-r--r-- | src/state/models/content/list.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/models/content/list.ts b/src/state/models/content/list.ts index 115426e5c..fc09eeb9f 100644 --- a/src/state/models/content/list.ts +++ b/src/state/models/content/list.ts @@ -361,7 +361,7 @@ export class ListModel { name: this.data?.name || '', uri: this.uri, }) - // TEMPORARY + // TODO TEMPORARY // lists are temporarily piggybacking on the saved/pinned feeds preferences // we'll eventually replace saved feeds with the bookmarks API // until then, we need to unsave lists instead of just unpin them |