We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4633a6 commit 09c18c5Copy full SHA for 09c18c5
src/renderer/components/side-nav/side-nav.js
@@ -35,6 +35,12 @@ export default defineComponent({
35
activeSubscriptions: function () {
36
const subscriptions = deepCopy(this.activeProfile.subscriptions)
37
38
+ subscriptions.forEach(channel => {
39
+ // Change thumbnail size to 35x35, as that's the size we display it
40
+ // so we don't need to download a bigger image (the default is 176x176)
41
+ channel.thumbnail = channel.thumbnail?.replace(/=s\d+/, '=s35')
42
+ })
43
+
44
subscriptions.sort((a, b) => {
45
return a.name?.toLowerCase().localeCompare(b.name?.toLowerCase(), this.locale)
46
})
0 commit comments