mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 12:44:58 +00:00
Hotfix for TD - Null ref in incoming call. Thought this was fixed.
This commit is contained in:
@@ -4,5 +4,5 @@
|
|||||||
[assembly: AssemblyCompany("PepperDash Technology Corp")]
|
[assembly: AssemblyCompany("PepperDash Technology Corp")]
|
||||||
[assembly: AssemblyProduct("PepperDashEssentials")]
|
[assembly: AssemblyProduct("PepperDashEssentials")]
|
||||||
[assembly: AssemblyCopyright("Copyright © PepperDash Technology Corp 2017")]
|
[assembly: AssemblyCopyright("Copyright © PepperDash Technology Corp 2017")]
|
||||||
[assembly: AssemblyVersion("1.0.41.*")]
|
[assembly: AssemblyVersion("1.0.42.*")]
|
||||||
|
|
||||||
|
|||||||
@@ -971,7 +971,7 @@ namespace PepperDash.Essentials
|
|||||||
if (inCall)
|
if (inCall)
|
||||||
{
|
{
|
||||||
// Check if transitioning to in call - and non-sharable source is in use
|
// Check if transitioning to in call - and non-sharable source is in use
|
||||||
if (CurrentRoom.CurrentSourceInfo.DisableCodecSharing)
|
if (CurrentRoom.CurrentSourceInfo != null && CurrentRoom.CurrentSourceInfo.DisableCodecSharing)
|
||||||
{
|
{
|
||||||
Debug.Console(1, CurrentRoom, "Transitioning to in-call, cancelling non-sharable source");
|
Debug.Console(1, CurrentRoom, "Transitioning to in-call, cancelling non-sharable source");
|
||||||
CurrentRoom.RunRouteAction("codecOsd");
|
CurrentRoom.RunRouteAction("codecOsd");
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user