-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot sync data #5
Comments
It seems like an extension is interfering with the data caching process. Could you provide me with the name of the extension you suspect? I will debug based on that. Thank you! |
This comment was marked as duplicate.
This comment was marked as duplicate.
1 similar comment
Oh, I see. It seems like you are manually fetching the Turso configuration, right? You are missing a step for initializing the table for Turso, which is an oversight on my part. I sincerely apologize. You can find the instructions for initializing the table here: https://t.me/opennotas/66. CREATE TABLE
`folders` (
`id` text PRIMARY KEY NOT NULL,
`name` text,
`createdAt` integer,
`updatedAt` integer,
`deletedAt` integer,
`lastSync` integer
);
CREATE TABLE
`notes` (
`id` text PRIMARY KEY NOT NULL,
`folderId` text,
`content` text,
`isPinned` integer,
`isLocked` integer,
`createdAt` integer,
`updatedAt` integer,
`deletedAt` integer,
`lastSync` integer,
`deleteCompletelyAt` integer
);
CREATE TABLE
`settings` (
`id` text PRIMARY KEY NOT NULL,
`password` text,
`updatedAt` integer,
`lastSync` integer
); |
That was indeed the problem! Seems to me that https://docs.opennotas.io/started/setup-sync/turso#manual-retrieval may need some updating. Many thanks! |
Using Microsoft Edge Version 126.0.2592.102 (Official build) (64-bit) and opennotas installed as a web app
Using Chrome Version 126.0.6478.183 (Official Build) (64-bit) and opennotas installed as a web app
Error from console
The text was updated successfully, but these errors were encountered: