lbry-desktop/ui/util/file.js
infinite-persistence 9d25d82bed
Exclude "modified date" for Firefox/Android
## Issue
It appears that the modification date of the Android file changes when selected, so that file was deemed "different" when trying to resume upload.

## Change
Exclude modification date for now. Let's assume a smart user.
2021-11-11 08:00:12 +08:00

5 lines
110 B
JavaScript

// @flow
export function serializeFileObj(file: File) {
return `${file.name}#${file.type}#${file.size}`;
}