File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
packages/feeds-client/src/feed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -219,6 +219,7 @@ export class Feed extends FeedApi {
219219 'user.reactivated' : Feed . noop ,
220220 'user.updated' : Feed . noop ,
221221 'feeds.activity.feedback' : handleActivityFeedback . bind ( this ) ,
222+ 'feeds.activity.restored' : Feed . noop ,
222223 } ;
223224
224225 protected eventDispatcher : EventDispatcher < WSEvent [ 'type' ] , WSEvent > =
@@ -872,7 +873,13 @@ export class Feed extends FeedApi {
872873 return response ;
873874 }
874875
875- async unfollow ( feedOrFid : Feed | string , options ?: Omit < Parameters < typeof this . client . unfollow > [ 0 ] , 'source' | 'target' > ) {
876+ async unfollow (
877+ feedOrFid : Feed | string ,
878+ options ?: Omit <
879+ Parameters < typeof this . client . unfollow > [ 0 ] ,
880+ 'source' | 'target'
881+ > ,
882+ ) {
876883 const fid = typeof feedOrFid === 'string' ? feedOrFid : feedOrFid . feed ;
877884
878885 const response = await this . client . unfollow ( {
You can’t perform that action at this time.
0 commit comments