I can confirm that changing future date (whose timestamp is greater than 32 bit 
signed integer) to smaller value solves the problem.
To change the date, edit FSpot database (in my case it was 
~/.config/f-spot/photos.db) with sqlite manager and execute the following query:

update photos set time=[new_timestamp_which_is_less_then_max_int32]
where id=[id_of_photo_in_question]

If you have many photos with wrong timestamp, you can try to modify the
above query to update all of them at once e.g.:

update photos set time=[new_timestamp_which_is_less_then_max_int32]
where time > 2000000000

-- 
F-spot error: Value is greater than Int32.MaxValue or less than Int32.MinValue
https://bugs.launchpad.net/bugs/636819
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to