Manual download of attachments with no blurHash
This commit is contained in:
parent
ed786898fb
commit
34285054f6
12 changed files with 117 additions and 32 deletions
|
@ -3,7 +3,7 @@
|
|||
|
||||
import { createSelector } from 'reselect';
|
||||
|
||||
import { LocalizerType } from '../../types/Util';
|
||||
import { LocalizerType, ThemeType } from '../../types/Util';
|
||||
|
||||
import { StateType } from '../reducer';
|
||||
import { UserStateType } from '../ducks/user';
|
||||
|
@ -59,3 +59,8 @@ export const getTempPath = createSelector(
|
|||
getUser,
|
||||
(state: UserStateType): string => state.tempPath
|
||||
);
|
||||
|
||||
export const getTheme = createSelector(
|
||||
getUser,
|
||||
(state: UserStateType): ThemeType => state.theme
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue