diff --git a/PepperDashEssentials/Room/Types/EssentialsHuddleSpaceRoom.cs b/PepperDashEssentials/Room/Types/EssentialsHuddleSpaceRoom.cs
index b14e563d..009fcb32 100644
--- a/PepperDashEssentials/Room/Types/EssentialsHuddleSpaceRoom.cs
+++ b/PepperDashEssentials/Room/Types/EssentialsHuddleSpaceRoom.cs
@@ -273,9 +273,9 @@ namespace PepperDash.Essentials
///
///
///
- public void RunRouteAction(string routeKey, string souceListKey)
+ public void RunRouteAction(string routeKey, string sourceListKey)
{
- throw new NotImplementedException();
+ RunRouteAction(routeKey, new Action(() => { }));
}
///
@@ -284,9 +284,14 @@ namespace PepperDash.Essentials
///
///
///
- public void RunRouteAction(string routeKey, string souceListKey, Action successCallback)
+ public void RunRouteAction(string routeKey, string sourceListKey, Action successCallback)
{
- throw new NotImplementedException();
+ if (string.IsNullOrEmpty(sourceListKey))
+ {
+ RunRouteAction(routeKey, successCallback);
+ }
+ else
+ throw new NotImplementedException();
}
///
diff --git a/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs b/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs
index c5021526..0b4a713a 100644
--- a/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs
+++ b/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs
@@ -403,9 +403,14 @@ namespace PepperDash.Essentials
///
///
///
- public void RunRouteAction(string routeKey, string souceListKey)
+ public void RunRouteAction(string routeKey, string sourceListKey)
{
- throw new NotImplementedException();
+ if (string.IsNullOrEmpty(sourceListKey))
+ {
+ RunRouteAction(routeKey, new Action(() => { }));
+ }
+ else
+ throw new NotImplementedException();
}
///
@@ -414,9 +419,14 @@ namespace PepperDash.Essentials
///
///
///
- public void RunRouteAction(string routeKey, string souceListKey, Action successCallback)
+ public void RunRouteAction(string routeKey, string sourceListKey, Action successCallback)
{
- throw new NotImplementedException();
+ if (string.IsNullOrEmpty(sourceListKey))
+ {
+ RunRouteAction(routeKey, successCallback);
+ }
+ else
+ throw new NotImplementedException();
}
///