diff --git a/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs b/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs
index b7ce3030..72f17a73 100644
--- a/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs
+++ b/PepperDashEssentials/Room/Types/EssentialsHuddleVtc1Room.cs
@@ -405,12 +405,7 @@ namespace PepperDash.Essentials
///
public void RunRouteAction(string routeKey, string sourceListKey)
{
- if (string.IsNullOrEmpty(sourceListKey))
- {
- RunRouteAction(routeKey, new Action(() => { }));
- }
- else
- throw new NotImplementedException();
+ RunRouteAction(routeKey, new Action(() => { }));
}
///
@@ -421,12 +416,8 @@ namespace PepperDash.Essentials
///
public void RunRouteAction(string routeKey, string sourceListKey, Action successCallback)
{
- if (string.IsNullOrEmpty(sourceListKey))
- {
RunRouteAction(routeKey, successCallback);
- }
- else
- throw new NotImplementedException();
+
}
///