summaryrefslogtreecommitdiffstats
path: root/assets/js/videojs-http-streaming.js
diff options
context:
space:
mode:
authorrecette-lemon <854qskawygnrtcdo@protonmail.com>2019-07-14 22:26:52 +0000
committerHosted Weblate <hosted@weblate.org>2019-07-19 01:52:11 +0200
commit138cf943a969a6318dbf16113b1d4250c2c98e38 (patch)
treedda72603e133dc25d9685a6ef8619b2f6384d4f2 /assets/js/videojs-http-streaming.js
parentc7e672e533c23e3b73e7286728d4f38af7364916 (diff)
downloadinvidious-138cf943a969a6318dbf16113b1d4250c2c98e38.tar.gz
invidious-138cf943a969a6318dbf16113b1d4250c2c98e38.tar.bz2
invidious-138cf943a969a6318dbf16113b1d4250c2c98e38.zip
Update Icelandic translation
Diffstat (limited to 'assets/js/videojs-http-streaming.js')
0 files changed, 0 insertions, 0 deletions
src/invidious/views/search.ecr?id=84cc7322810e024bd0b5c0c05d752cc3476ad717&follow=1'>search functions: Don't return result countSamantaz Fox This is useless, as the items count can be directly acessed using the '.size' method, so use that instead when needed. 2022-01-28Fix 'Lint/UselessAssign' warnings reported by amebaSamantaz Fox 2022-01-28Remove useless intermediary variable in youtube_api.crSamantaz Fox This fixes an ameba warning 2022-01-28Remove script for locales propagationSamantaz Fox Not required anymore now that weblate takes care of it 2022-01-28Avoid infinite loop in ChannelVideo's to_xml/to_json methodsSamantaz Fox 2022-01-28Fix more 'Lint/ShadowingOuterLocalVar' warnings reported by amebaSamantaz Fox 2022-01-28Fix some 'Lint/ShadowingOuterLocalVar' warnings reported by amebaSamantaz Fox 2022-01-28Remove useless 'locale = env.get...' from many routesSamantaz Fox 2022-01-28Use '.dig?()' in playlist parsingSamantaz Fox 2022-01-28Make 'additional_fields' optional in JSON error template functionsSamantaz Fox This allows us to de-duplicate functions 2022-01-28Remove useless 'locale' argument from error template functionsSamantaz Fox 2022-01-28Remove useless arguments from playlist-related functionsSamantaz Fox 2022-01-26db: use prepared statements rather than crafted argument listSamantaz Fox 2022-01-26Makefile: Fix 'STATIC' in help messageSamantaz Fox Fix description (typo) and default value 2022-01-25Fix code broken when extracting data control routematthewmcgarvey 2022-01-25Make certain routes ignored if api onlymatthewmcgarvey 2022-01-25Move more routes to new patternmatthewmcgarvey 2022-01-26db: use now() function instead of passing Time.utcSamantaz Fox 2022-01-25DB: playlists: make that 'insert' never raisesSamantaz Fox 2022-01-25DB: Move integrity check to the base.cr fileSamantaz Fox 2022-01-25DB: don't pass PG_DB to check_table/check_enumSamantaz Fox 2022-01-25DB: Move a forgotten 'UPDATE channels' statementSamantaz Fox 2022-01-25will -> shouldMatthew McGarvey Co-authored-by: Samantaz Fox <coding@samantaz.fr> 2022-01-25config: remove note about QUIC disabled at GoogleSamantaz Fox The situation is back to normal. 2022-01-25Update Portuguese (Brazil) translationHosted Weblate Update Portuguese (Brazil) translation Co-authored-by: André Marcelo Alvarenga <andrealvarenga@gmx.net> Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Kamuri Amorim <myk.gata14@gmail.com> 2022-01-25Update Croatian translationHosted Weblate Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Milo Ivir <mail@milotype.de> 2022-01-25Update French translationHosted Weblate Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Samantaz Fox <translator-weblate@samantaz.fr> 2022-01-25Update Japanese translationHosted Weblate Co-authored-by: GnuPGを使うべきだ <dieeeazpnnqbpddh@cock.email> Co-authored-by: Hosted Weblate <hosted@weblate.org> 2022-01-25Update Polish translationHosted Weblate Co-authored-by: skajmer <skajmer@protonmail.com> 2022-01-25Update Chinese (Traditional) translationHosted Weblate Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Jeff Huang <s8321414@gmail.com> 2022-01-25Update Chinese (Simplified) translationHosted Weblate Co-authored-by: Eric <alchemillatruth@purelymail.com> 2022-01-25Update Turkish translationHosted Weblate Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Oğuz Ersen <oguzersen@protonmail.com> 2022-01-25Update Hungarian translationHosted Weblate Co-authored-by: f3rr31 <5920873@disroot.org> 2022-01-25Update Spanish translationHosted Weblate Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Jorge Maldonado Ventura <jorgesumle@freakspot.net> 2022-01-22Specify the public schema for public videosTony Finn Unlike the other migrations, this one uses a bare table name to specify the table. This means it looks in the default search path. Unfortunately, the out of box search path is: 1. Schema with the same name as the user 2. Public Because of this, if a schema exists with the same name as the DB user, the playlist_videos table will get created in _that_ schema, rather than the public schema, and then the grant statement will fail with an error like below if check_table is enabled as it keeps trying to create the table but failing on the grant statement: ``` 2022-01-22 02:27:42 UTC [info] check_table: check_table: CREATE TABLE playlist_videos Unhandled exception: relation "public.playlist_videos" does not exist (PQ::PQError) from /usr/share/crystal/src/primitives.cr:266:3 in 'handle_error' from lib/pg/src/pq/connection.cr:184:9 in 'handle_async_frames' from lib/pg/src/pq/connection.cr:162:7 in 'read' from lib/pg/src/pq/query.cr:53:14 in 'exec_all' from lib/db/src/db/database.cr:126:9 in '__crystal_main' from /usr/share/crystal/src/crystal/main.cr:110:5 in 'main' from src/env/__libc_start_main.c:94:2 in 'libc_start_main_stage2' 2022-01-22 02:27:43 UTC [info] check_table: check_table: CREATE TABLE playlist_videos Unhandled exception: relation "public.playlist_videos" does not exist (PQ::PQError) from /usr/share/crystal/src/primitives.cr:266:3 in 'handle_error' from lib/pg/src/pq/connection.cr:184:9 in 'handle_async_frames' from lib/pg/src/pq/connection.cr:162:7 in 'read' from lib/pg/src/pq/query.cr:53:14 in 'exec_all' from lib/db/src/db/database.cr:126:9 in '__crystal_main' from /usr/share/crystal/src/crystal/main.cr:110:5 in 'main' from src/env/__libc_start_main.c:94:2 in 'libc_start_main_stage2' ``` 2022-01-20Use --production flag for shards installation on dockerSamantaz Fox 2022-01-20Add Ameba static code analysis tool to dev shardsSamantaz Fox