pull/129/head
Ludea 2 years ago
parent 5ff304d9a6
commit c2135ac566

@ -299,13 +299,12 @@ export class Store {
client: this.client, client: this.client,
key: toBytesDto(key), key: toBytesDto(key),
}).then((v) => { }).then((v) => {
if (v !== null || undefined) { if (v !== null || undefined) {
return Uint8Array.from(v); return Uint8Array.from(v);
} } else {
else { return null;
return null; }
} });
})
} }
async insert( async insert(

Loading…
Cancel
Save