Skip to content

Commit

Permalink
Fixed issue with categorizing a feed as live
Browse files Browse the repository at this point in the history
  • Loading branch information
bootsie123 committed Jun 4, 2021
1 parent 14fc6ec commit ae4d774
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "f1-web-viewer",
"description": "A simple grid-based web viewer for Formula 1",
"author": "bootsie123",
"version": "1.7.1",
"version": "1.7.2",
"private": true,
"homepage": "https://github.com/bootsie123/F1-Web-Viewer",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/FeedManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
const container = channels.data.resultObj.containers[0];
if (container.metadata.additionalStreams) {
const isLive = container.metadata.contentType === "LIVE";
const isLive = container.metadata.contentSubtype === "LIVE";
const mappedChannels = channels.data.resultObj.containers[0].metadata.additionalStreams.map(channel => {
return {
Expand Down

0 comments on commit ae4d774

Please sign in to comment.