error if file from localStorage is old (no manifest)
This commit is contained in:
parent
c908f0a927
commit
0c458e180c
1 changed files with 3 additions and 0 deletions
|
@ -4,6 +4,9 @@ import { del, fileInfo, setParams, setPassword } from './api';
|
|||
|
||||
export default class OwnedFile {
|
||||
constructor(obj) {
|
||||
if (!obj.manifest) {
|
||||
throw new Error('invalid file object');
|
||||
}
|
||||
this.id = obj.id;
|
||||
this.url = obj.url;
|
||||
this.name = obj.name;
|
||||
|
|
Loading…
Reference in a new issue