Reputation: 315
I'm using macOS M1 and I'm having this problem after updating Filezilla:
An error occurred saving the transfer queue to /Users/pradeep/.config/filezilla/queue.sqlite3. Some queue items might not have been saved.
I think there is a file path problem.
Upvotes: 8
Views: 8952
Reputation: 1176
I just reset the permission for my account on my mac:
sudo chown -R <your_user_name> ~/.config
Upvotes: 1
Reputation: 1
I got the same issue in my M1, I just created a new folder inside the .config folder, named "filezilla" and added a "queue.sqlite3" file inside that folder because it is not present there. The error disappeared.
Upvotes: 0
Reputation: 426
I removed manually the queue.sqlite3 file and the error disappeared.
In your case:
rm /Users/pradeep/.config/filezilla/queue.sqlite3
Upvotes: 30