Skip to content

Commit 56f4c37

Browse files
committed
Search: Fix up a few duration and upload time related options
1 parent 089cd58 commit 56f4c37

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/renderer/store/modules/ytdl.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,9 @@ const actions = {
200200
if (searchSettings.duration !== '') {
201201
let filterValue = null
202202
if (searchSettings.duration === 'short') {
203-
filterValue = 'Short (< 4 minutes)'
203+
filterValue = 'Under 4 minutes'
204204
} else if (searchSettings.duration === 'long') {
205-
filterValue = 'Long (> 20 minutes)'
205+
filterValue = 'Over 20 minutes'
206206
}
207207

208208
filterUrl = filter.get('Duration').get(filterValue).url
@@ -216,7 +216,7 @@ const actions = {
216216

217217
switch (searchSettings.time) {
218218
case 'hour':
219-
filterValue = 'Last Hour'
219+
filterValue = 'Last hour'
220220
break
221221
case 'today':
222222
filterValue = 'Today'

0 commit comments

Comments
 (0)