You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ACK has wrong request Uri
The reason - different format for Record route options: <<"lr">> or {<<"lr">>,<<"on">>}
NKSIP Version v0.4.0
Quick fix -
- case lists:member(<<"lr">>, RouteOpts) of
- true ->
- DestUri = TopRoute#uri{
+ Lr = lists:member(<<"lr">>, RouteOpts) or lists:member({<<"lr">>,<<"on">>}, RouteOpts),
+ case Lr of
+ true ->
+ DestUri = TopRoute#uri{
The text was updated successfully, but these errors were encountered:
ACK has wrong request Uri
The reason - different format for Record route options: <<"lr">> or {<<"lr">>,<<"on">>}
NKSIP Version v0.4.0
The text was updated successfully, but these errors were encountered: