mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 02:08:23 +00:00
fix: null ptr while retaining time
This commit is contained in:
parent
a18068aedf
commit
0453d08eed
@ -59,6 +59,16 @@ videojs.Hls.xhr.beforeRequest = function(options) {
|
|||||||
|
|
||||||
var player = videojs('player', options);
|
var player = videojs('player', options);
|
||||||
|
|
||||||
|
const storage = (() => {
|
||||||
|
try {
|
||||||
|
if (localStorage.length !== -1) {
|
||||||
|
return localStorage;
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
console.info('No storage available: ' + e);
|
||||||
|
}
|
||||||
|
return undefined;
|
||||||
|
})();
|
||||||
|
|
||||||
if (location.pathname.startsWith('/embed/')) {
|
if (location.pathname.startsWith('/embed/')) {
|
||||||
player.overlay({
|
player.overlay({
|
||||||
@ -386,25 +396,35 @@ function get_video_time() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function set_all_video_times(times) {
|
function set_all_video_times(times) {
|
||||||
const json = JSON.stringify(times);
|
if (storage) {
|
||||||
|
if (times) {
|
||||||
localStorage.setItem(save_player_pos_key, json);
|
try {
|
||||||
|
storage.setItem(save_player_pos_key, JSON.stringify(times));
|
||||||
|
} catch (e) {
|
||||||
|
console.debug('set_all_video_times: ' + e);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
storage.removeItem(save_player_pos_key);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_all_video_times() {
|
function get_all_video_times() {
|
||||||
try {
|
if (storage) {
|
||||||
const raw = localStorage.getItem(save_player_pos_key);
|
const raw = storage.getItem(save_player_pos_key);
|
||||||
const times = JSON.parse(raw);
|
if (raw !== null) {
|
||||||
|
try {
|
||||||
return times || {};
|
return JSON.parse(raw);
|
||||||
}
|
} catch (e) {
|
||||||
catch {
|
console.debug('get_all_video_times: ' + e);
|
||||||
return {};
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
function remove_all_video_times() {
|
function remove_all_video_times() {
|
||||||
localStorage.removeItem(save_player_pos_key);
|
set_all_video_times(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
function set_time_percent(percent) {
|
function set_time_percent(percent) {
|
||||||
|
Loading…
Reference in New Issue
Block a user