@ -42,7 +42,7 @@ export const login = createAction(
export const setCacheCollection = createAction (
"SET_CACHE_COLLECTION" ,
async ( colMgr : Etebase.CollectionManager , col : Etebase.Collection ) = > {
return Etebase . toBase64 ( await colMgr . cacheSave ( col ) ) ;
return await colMgr . cacheSave ( col ) ;
} ,
( _colMgr : Etebase.CollectionManager , col : Etebase.Collection ) = > {
return {
@ -69,7 +69,7 @@ export const collectionUpload = createAction(
"COLLECTION_UPLOAD" ,
async ( colMgr : Etebase.CollectionManager , col : Etebase.Collection ) = > {
await colMgr . upload ( col ) ;
return Etebase . toBase64 ( await colMgr . cacheSave ( col ) ) ;
return await colMgr . cacheSave ( col ) ;
} ,
( _colMgr : Etebase.CollectionManager , col : Etebase.Collection ) = > {
return {
@ -82,7 +82,7 @@ export const collectionUpload = createAction(
export const setCacheItem = createAction (
"SET_CACHE_ITEM" ,
async ( _col : Etebase.Collection , itemMgr : Etebase.CollectionItemManager , item : Etebase.CollectionItem ) = > {
return Etebase . toBase64 ( await itemMgr . cacheSave ( item ) ) ;
return await itemMgr . cacheSave ( item ) ;
} ,
( col : Etebase.Collection , _itemMgr : Etebase.CollectionItemManager , item : Etebase.CollectionItem ) = > {
return {
@ -112,7 +112,7 @@ export const setCacheItemMulti = createAction(
async ( _colUid : string , itemMgr : Etebase.CollectionItemManager , items : Etebase.CollectionItem [ ] ) = > {
const ret = [ ] ;
for ( const item of items ) {
ret . push ( Etebase . toBase64 ( await itemMgr . cacheSave ( item ) ) ) ;
ret . push ( await itemMgr . cacheSave ( item ) ) ;
}
return ret ;
} ,
@ -130,7 +130,7 @@ export const itemBatch = createAction(
await itemMgr . batch ( items , deps ) ;
const ret = [ ] ;
for ( const item of items ) {
ret . push ( Etebase . toBase64 ( await itemMgr . cacheSave ( item ) ) ) ;
ret . push ( await itemMgr . cacheSave ( item ) ) ;
}
return ret ;
} ,