diff options
| author | Julian Hurst <julian.hurst92@gmail.com> | 2021-01-09 23:34:27 +0100 |
|---|---|---|
| committer | Julian Hurst <julian.hurst92@gmail.com> | 2021-01-09 23:34:27 +0100 |
| commit | f650ebfaf23d338f620f221b4003d9ae7cf341ff (patch) | |
| tree | 0cac8e6a0b725512e4fa4eabf57af86670e90423 | |
| parent | 8f3ebc172d4930953b67f3c8acfd00bfa825f4de (diff) | |
| download | ytparser-1.0.0.tar.gz | |
Fix incorrect rating and default search order1.0.0
| -rw-r--r-- | ytparser.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ytparser.go b/ytparser.go index df688dc..689ff84 100644 --- a/ytparser.go +++ b/ytparser.go @@ -209,9 +209,9 @@ func translateOrder(order string) string { case "views": return "CAMSAhAB" case "rating": - return "CAASAhAB" - default: return "CAESAhAB" + default: + return "CAASAhAB" } } |
