Skip to content
This repository has been archived by the owner on Jan 4, 2025. It is now read-only.

Commit

Permalink
Fixes #935
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdriscoll committed Jul 3, 2019
1 parent 3a1c724 commit e00aa01
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/UniversalDashboard/Server/DashboardHub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
using UniversalDashboard.Services;
using System.Text;
using UniversalDashboard.Models.Enums;
using Microsoft.CSharp.RuntimeBinder;

namespace UniversalDashboard
{
Expand Down Expand Up @@ -242,6 +243,9 @@ public Task ClientEvent(string eventId, string eventName, string eventData, stri
Clients.Client(Context.ConnectionId).SendAsync("showError", new { message = error.Message });
}

}
catch (RuntimeBinderException) {

}
catch (Exception ex)
{
Expand Down

0 comments on commit e00aa01

Please sign in to comment.