diff options
Diffstat (limited to 'shared')
-rw-r--r-- | shared/extra-utils/videos/videos.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/shared/extra-utils/videos/videos.ts b/shared/extra-utils/videos/videos.ts index a2438d712..392eddcc5 100644 --- a/shared/extra-utils/videos/videos.ts +++ b/shared/extra-utils/videos/videos.ts | |||
@@ -194,7 +194,10 @@ function getAccountVideos ( | |||
194 | start: number, | 194 | start: number, |
195 | count: number, | 195 | count: number, |
196 | sort?: string, | 196 | sort?: string, |
197 | query: { nsfw?: boolean } = {} | 197 | query: { |
198 | nsfw?: boolean | ||
199 | search?: string | ||
200 | } = {} | ||
198 | ) { | 201 | ) { |
199 | const path = '/api/v1/accounts/' + accountName + '/videos' | 202 | const path = '/api/v1/accounts/' + accountName + '/videos' |
200 | 203 | ||