Skip to content

Commit

Permalink
Deck 2.6.1
Browse files Browse the repository at this point in the history
* Fixed: Issue with sidebar tool-tips not working correctly if the user does not have live indicators on live channels hidden.
  • Loading branch information
SirStendec committed Nov 26, 2023
1 parent de56466 commit 55d2499
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/deck/manifest.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"enabled": true,
"requires": [],
"version": "2.6.0",
"version": "2.6.1",
"short_name": "Deck",
"name": "Deck",
"author": "SirStendec",
"description": "Deck provides a TweetDeck-like experience for finding content on Twitch.\n\nYou can define columns for live channels, videos, or clips. Sort each column how you want. Filter by tags. Find the content you want to watch.\n\nThis extension is not super user-friendly for getting started, but I don't have the time to give it the polish it deserves.",
"settings": "add_ons.deck",
"created": "2019-09-12T15:31:59.000Z",
"updated": "2023-11-07T01:57:49.761Z"
"updated": "2023-11-26T19:09:56.325Z"
}
2 changes: 1 addition & 1 deletion src/deck/side-components/bd-host-shelf-card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export default {
let indicator;
if ( this.item.stream.type !== 'live' || ! this.settings.hide_live )
indicator = createStreamIndicator(this.iteam.stream.type);
indicator = createStreamIndicator(this.item.stream.type);
return createCard({
link: this.getReactURL('user', this.item.login),
Expand Down
2 changes: 1 addition & 1 deletion src/deck/side-components/bd-live-shelf-card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export default {
let indicator;
if ( this.item.stream.type !== 'live' || ! this.settings.hide_live )
indicator = createStreamIndicator(this.iteam.stream.type);
indicator = createStreamIndicator(this.item.stream.type);
let embed = null;
if ( this.settings.video_preview )
Expand Down

0 comments on commit 55d2499

Please sign in to comment.