7bcb29c
be more liberal in 0167 payload-type parameter parsing
Click to expand commit body
some implementations will transform the following SDP coming from Firefox
m=audio 12346 RTP/AVP 101
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-15
to
<payload-type channels="1" name="telephone-event" clockrate="8000" id="101">
<parameter value="0-15" xmlns="urn:xmpp:jingle:apps:rtp:1"/>
</payload-type>
While a missing name attribute is not legal according to the XEP; and 0-15 are
technically not just one value the following commit will accept it if there is
just one paramater.
Daniel Gultsch
created
4780420
clear pending photo uri only when also clearing activity result
Click to expand commit body
on some phones the onBackendConnected finishes prior to the onActivityResult()
leading to the pending photo uri being cleared before processing the result.
this leads to 'Take photo' not working.
but we probably don’t need to clear the photo uri if there is to activiyResult
to clear as well
Daniel Gultsch
created
4493f6c
Leave the incoming call notification category as CATEGORY_CALL (#3792)
Dmitry Markin
created
8356a1c
fix render script for latest inkscape version
if the activity is not connected during finish it won’t receive the last end user state.
this code remembers it even if the actual session is already gone. so when activity reconnects and
we can’t find the real rtp session we can look up the last state instead.
Daniel Gultsch
created
7e2d87f
recover if attachImage can’t generate scalled down version of image. fixes #3773
Daniel Gultsch
created
1853242
do not throw when finishing jingle ft twice. fixes #3765
Click to expand commit body
the state machine in jingle file transfer does not prevent that the connection
is being finished twice
Daniel Gultsch
created
b78d45c
fix Jingle FT candidate selection for equal priority. fixes #3771