mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-10 04:29:44 +00:00
pass is_app_readable to notification/list
This commit is contained in:
parent
788fd153da
commit
1cb0685b61
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ export function doDismissError() {
|
||||||
export function doNotificationList() {
|
export function doNotificationList() {
|
||||||
return (dispatch: Dispatch) => {
|
return (dispatch: Dispatch) => {
|
||||||
dispatch({ type: ACTIONS.NOTIFICATION_LIST_STARTED });
|
dispatch({ type: ACTIONS.NOTIFICATION_LIST_STARTED });
|
||||||
return Lbryio.call('notification', 'list')
|
return Lbryio.call('notification', 'list', { is_app_readable: true })
|
||||||
.then(response => {
|
.then(response => {
|
||||||
const notifications = response || [];
|
const notifications = response || [];
|
||||||
const channelsToResolve = notifications
|
const channelsToResolve = notifications
|
||||||
|
|
Loading…
Add table
Reference in a new issue