Open tyler-dot-earth opened 4 months ago
Something that may be helpful is a button/action to re-add books to booksIDsMap
that may have been lost by looking at the files in your readwise directory. However, there's one issue: those files do not contain the book IDs. PR #62 adds the ability to save book IDs to frontmatter, which would allow the plugin to restore lost books.
I can confidently say that Obsidian Sync is now the primary culprit of this bug after #67's changes which deleted this plugin's code which removed booksIDsMap
entries (as deleted items are tracked another way in that PR).
Got some info from the Obsidian team on how to access Sync's status. It's an internal API, though they note that it's accessible and has never changed.
I'm gonna make a personal branch and do some explroing. Plan is to basically wait for Sync to complete (if the plugin is enabled), then kick off Readwise's sync. I'll also add a fallback in case Obsidian's sync is not present, failing, or non-responsive.
I just noticed a lot of books disappearing from booksIDsMap
in data.json
- do you know if books disappearing from this causes any problems with the highlights in my vault? Put more simply: should I care if books are disappearing from booksIDsMap
? Thanks for the contributions you've been making to the plugin!
@rvjosh
I just noticed a lot of books disappearing from
booksIDsMap
indata.json
- do you know if books disappearing from this causes any problems with the highlights in my vault? Put more simply: should I care if books are disappearing frombooksIDsMap
? Thanks for the contributions you've been making to the plugin!
Shouldn't cause any issues unless you need to resync them from Readwise.
More evidence that this is almost definitely a race condition between Obsidian Sync and Readwise syncs: https://www.reddit.com/r/readwise/comments/1f79gfk/comment/llj533w/
tl;dr:
data.json
file in these "race" casesThis is extremely similar to my own setup (multidevice, different usage) with the same problems presenting.
I haven't had time to try exploring like i mentioned in this comment, but i'm hoping to find time soon.
For what it's worth, you may be right, but I do not use Obsidian sync but still observed this issue
@rvjosh very interesting! can you speak more to your setup? like:
Sure thing.
Hmm. After thinking a bit, @rvjosh I would like you to keep an eye out for new occurrences of this issue after v2.1.1 (current version).
Rationale: the changes from #67 made it so the plugin no ever longer deletes entries from booksIDsMap
- which was something it previously did under certain logic.
Given that you're using your own syncing solution via git, I think there's a low likelihood that it's caused by some sort of conflict resolution when manually pulling/syncing between your devices (though, hey, it's possible given that Obsidian Sync may use a similar algorithm to determine conflict resolution, albeit with additional sync logic).
So: if the issue occurs for you again, it would mean either (1/less likely) there's some serious oversight in the plugin code that is removing entries, (2/more likely) you're clobbering your plugin data during the git sync/conflict/etc process somehow.
That said, I'm optimistic that you'll have more luck with the removal of the booksIDsMap-entry-deleting code from #67/v2.1.1. Keep this thread posted if that isn't the case :)
Will do, thanks!
Over time, books seem to disappear at random form
booksIDsMap
indata.json
.Underlying cause is unknown.
Possible suspects:
Settings > Sync > Settings version history - View
shows the diffs betweendata.json
changes)MITIGATION: You can fix this locally by doing a Readwise sync in a clean vault and then copying the
data.json
content from the clean vault into your problematic vault. This is a pretty expansive set of instructions for doing that.