2020-01-14, 21:18
So basically i did update old kodi release on my apple tv, and sure i havnt tested this in other os releases.
the smb or rar strFilename in mysql has been changed, since i had an str "rar://smb%3a%2f%2fjoker%2fshare%2ftv%2fmy_movie.rar/my_movie.mkv" that did follow from the old database to the new created one with the update ( xbmc_video107 -> xbmc_video116 ).
The problem is i was not able to see the watched mark on the file, i also couldn't see the mark that i have been watched some time of the movie, but when i selected the movie it asked me if i wanted to resume. even when manually select "watched" the database updated the playCount but still could see the mark for watched.
After few minutes i could see that the strFilename was diffrent form example a new file, i notice the problem is where smb has "%2f" but works fine with "%2F", but still funny that it does remember information like resume even if it was "%2f" but just couldn't show it in the files list.
This fixed for me:
my smb url is diffrent from others so please dont ask me why it isnt working
the smb or rar strFilename in mysql has been changed, since i had an str "rar://smb%3a%2f%2fjoker%2fshare%2ftv%2fmy_movie.rar/my_movie.mkv" that did follow from the old database to the new created one with the update ( xbmc_video107 -> xbmc_video116 ).
The problem is i was not able to see the watched mark on the file, i also couldn't see the mark that i have been watched some time of the movie, but when i selected the movie it asked me if i wanted to resume. even when manually select "watched" the database updated the playCount but still could see the mark for watched.
After few minutes i could see that the strFilename was diffrent form example a new file, i notice the problem is where smb has "%2f" but works fine with "%2F", but still funny that it does remember information like resume even if it was "%2f" but just couldn't show it in the files list.
This fixed for me:
UPDATE files SET strFilename = REPLACE(strFilename, '%2f', '%2F') WHERE strFilename LIKE ('rar://smb%3A%2F%2Fjoker%2Fshare%2Ftv%2F%');:
UPDATE files
SET strFilename = REPLACE(strFilename, '%2f', '%2F')
WHERE strFilename LIKE ('rar://smb%3A%2F%2Fjoker%2Fshare%2Ftv%2F%');
my smb url is diffrent from others so please dont ask me why it isnt working