Skip to content

Commit

Permalink
Versão 1.2.1
Browse files Browse the repository at this point in the history
bugs fix: when create a new streamserver, the stream method is empty
  • Loading branch information
asabino2 committed Aug 1, 2022
1 parent f18379b commit fa0ff4c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
/bin/
/resources/
/docker/
./streamproxy.config.json
./streamproxy.*
compile*.bat
/streamproxy.config.json
/streamproxy.*

4 changes: 2 additions & 2 deletions 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 src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3443,7 +3443,7 @@ function mountStreamServerAdminPage(req, res, method = "POST", actualdata) {


if (actualdata == undefined) {
actualdata = { streamname: "", streamdescription: "", streamdescription: "", channelnumber: "", logourl: "", methoddefault: "/videostream/streamlink", streamprovider: "", videoformat: "", videocodec: "", framesize: "", framerate: "", audiocodec: "", title: "", url: "" }
actualdata = { streamname: "", streamdescription: "", streamdescription: "", channelnumber: "", logourl: "", streammethod: "/videostream/streamlink", streamprovider: "", videoformat: "", videocodec: "", framesize: "", framerate: "", audiocodec: "", title: "", url: "" }

}

Expand Down

0 comments on commit fa0ff4c

Please sign in to comment.