diff options
| author | absidue <48293849+absidue@users.noreply.github.com> | 2024-04-25 21:51:19 +0200 |
|---|---|---|
| committer | absidue <48293849+absidue@users.noreply.github.com> | 2024-05-14 19:02:41 +0200 |
| commit | 3b773c4f77c1469bcd158f7ab912fcb57af7b014 (patch) | |
| tree | 3271a0f92215997d53905853e40b48f1351a2077 | |
| parent | 57e606cb43d43c627708f0538eddcde3b0f580a0 (diff) | |
| download | invidious-3b773c4f77c1469bcd158f7ab912fcb57af7b014.tar.gz invidious-3b773c4f77c1469bcd158f7ab912fcb57af7b014.tar.bz2 invidious-3b773c4f77c1469bcd158f7ab912fcb57af7b014.zip | |
Fix missing commas
| -rw-r--r-- | src/invidious/jsonify/api_v1/video_json.cr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/invidious/jsonify/api_v1/video_json.cr b/src/invidious/jsonify/api_v1/video_json.cr index 6e8c3a72..59714828 100644 --- a/src/invidious/jsonify/api_v1/video_json.cr +++ b/src/invidious/jsonify/api_v1/video_json.cr @@ -125,7 +125,7 @@ module Invidious::JSONify::APIv1 if height && width json.field "size", "#{width}x#{height}" - json.field "resolution" "#{height}p" + json.field "resolution", "#{height}p" quality_label = "#{width > height ? height : width}p" @@ -180,7 +180,7 @@ module Invidious::JSONify::APIv1 if height && width json.field "size", "#{width}x#{height}" - json.field "resolution" "#{height}p" + json.field "resolution", "#{height}p" quality_label = "#{width > height ? height : width}p" |
