mirror of
https://github.com/streamwall/streamwall.git
synced 2026-01-26 07:02:48 -05:00
Merge pull request #4 from chromakode/tng
Fix for facebook streams freezing
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
"scripts": {
|
||||
"build": "webpack",
|
||||
"start": "npm run build -- --display=errors-only && electron dist",
|
||||
"start-local": "npm run build -- --display=errors-only && electron dist --webserver=http://localhost:4444 --username=woke --password=woke",
|
||||
"test": "jest"
|
||||
},
|
||||
"author": "Max Goodhart <c@chromakode.com>",
|
||||
|
||||
@@ -198,7 +198,7 @@ const viewStateMachine = Machine(
|
||||
setInterval(() => video.play(), 1000)
|
||||
|
||||
// Prevent sites from re-muting the video (Periscope, I'm looking at you!)
|
||||
Object.defineProperty(video, 'muted', {writable: false, value: false})
|
||||
Object.defineProperty(video, 'muted', {writable: true, value: false})
|
||||
|
||||
const info = { title: document.title }
|
||||
let divBase = document.querySelector('div.BaseVideo') // This will filter for only periscope videos
|
||||
|
||||
Reference in New Issue
Block a user