diff options
Diffstat (limited to 'client/src/app/shared/shared-main')
-rw-r--r-- | client/src/app/shared/shared-main/video/video.service.ts | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/client/src/app/shared/shared-main/video/video.service.ts b/client/src/app/shared/shared-main/video/video.service.ts index 668e51f73..7b17bd2ab 100644 --- a/client/src/app/shared/shared-main/video/video.service.ts +++ b/client/src/app/shared/shared-main/video/video.service.ts | |||
@@ -129,13 +129,7 @@ export class VideoService implements VideosProvider { | |||
129 | const filters = this.restService.parseQueryStringFilter(search, { | 129 | const filters = this.restService.parseQueryStringFilter(search, { |
130 | isLive: { | 130 | isLive: { |
131 | prefix: 'isLive:', | 131 | prefix: 'isLive:', |
132 | isBoolean: true, | 132 | isBoolean: true |
133 | handler: v => { | ||
134 | if (v === 'true') return v | ||
135 | if (v === 'false') return v | ||
136 | |||
137 | return undefined | ||
138 | } | ||
139 | } | 133 | } |
140 | }) | 134 | }) |
141 | 135 | ||