File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ of dependencies in `mix.exs`:
1818``` elixir
1919def deps do
2020 [
21- {:membrane_rtsp , " ~> 0.10.0 " }
21+ {:membrane_rtsp , " ~> 0.10.1 " }
2222 ]
2323end
2424```
Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ defmodule Membrane.RTSP do
204204 case URI . parse ( url ) do
205205 % URI { host: host , scheme: "rtsp" } = url when is_binary ( host ) ->
206206 start_fun . ( __MODULE__ , % {
207- url: % URI { url | port: url . port || @ default_rtsp_port } ,
207+ url: % URI { url | port: url . port || @ default_rtsp_port , path: url . path || "/" } ,
208208 options: options
209209 } )
210210
Original file line number Diff line number Diff line change 11defmodule Membrane.RTSP.MixProject do
22 use Mix.Project
33
4- @ version "0.10.0 "
4+ @ version "0.10.1 "
55 @ github_url "https://github.com/membraneframework/membrane_rtsp"
66
77 def project do
You can’t perform that action at this time.
0 commit comments