chore: troubleshoot the 'already subscribed to a feed' issue

This commit is contained in:
Michele Cereda
2024-02-14 21:50:07 +01:00
parent 51a22bb9c5
commit be20ba5d0b
2 changed files with 20 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
1. [Create a dummy account](#create-a-dummy-account)
1. [Convert an account's message store type from one file per folder (_mbox_) to one file per message (_maildir_)](#convert-an-accounts-message-store-type-from-one-file-per-folder-mbox-to-one-file-per-message-maildir)
1. [Rebuild the Global Database for a Profile](#rebuild-the-global-database-for-a-profile)
1. [You are already subscribed to this feed](#you-are-already-subscribed-to-this-feed)
1. [Further readings](#further-readings)
1. [Sources](#sources)
@@ -144,6 +145,17 @@ Depending on the number of messages, it might take some time for the indexing to
The indexing progress can be monitored through _Tools_ > _Activity Manager_.
### You are already subscribed to this feed
The feed list file is still containing the URL of the feed one is trying to add.
Remove the feed object from the `'Mail/Blog & News Feeds/feeds.json'` file in your profile:
```sh
# Just examples. Check what the command does.
jq 'del(.[1:4])' 'Mail/Blog & News Feeds/feeds.json'
```
## Further readings
- [Betterbird]