1cc2132a28
## Issue - Closes 592 Force clear stuck upload - It was possible for an upload to stay "locked" e.g. when browser is killed. ## Change When refreshing or opening a new tab, always clear the locks. The on-going sessions will re-lock them immediately.
4 lines
182 B
JavaScript
4 lines
182 B
JavaScript
// Local Storage keys
|
|
export const TUS_LOCKED_UPLOADS = 'tusLockedUploads';
|
|
export const TUS_REMOVED_UPLOADS = 'tusRemovedUploads';
|
|
export const TUS_REFRESH_LOCK = 'tusRefreshLock';
|