Fix error when cookies are disabled

pull/4208/head
Chocobozzz 2021-06-25 15:40:59 +02:00
parent 2b58ca796d
commit c6bfbaebe7
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 9 additions and 4 deletions

View File

@ -72,6 +72,7 @@ function getStoredLastSubtitle () {
function saveVideoWatchHistory (videoUUID: string, duration: number) {
return setLocalStorage(`video-watch-history`, JSON.stringify({
...getStoredVideoWatchHistory(),
[videoUUID]: {
duration,
date: `${(new Date()).toISOString()}`
@ -83,7 +84,10 @@ function getStoredVideoWatchHistory(videoUUID?: string) {
let data
try {
data = JSON.parse(getLocalStorage('video-watch-history'))
const value = getLocalStorage('video-watch-history')
if (!value) return {}
data = JSON.parse(value)
} catch (error) {
console.error('Cannot parse video watch history from local storage: ', error)
}
@ -97,6 +101,7 @@ function getStoredVideoWatchHistory(videoUUID?: string) {
function cleanupVideoWatch () {
const data = getStoredVideoWatchHistory()
if (!data) return
const newData = Object.keys(data).reduce((acc, videoUUID) => {
const date = Date.parse(data[videoUUID].date)