mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
Merge pull request #571 from PepperDash/hotfix/ComsMessageQueue-throws-exception
Hotfix/coms message queue throws exception
This commit is contained in:
commit
a36bce4d5e
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ namespace PepperDash_Essentials_Core.Queues
|
|||
|
||||
private void Validate(IBasicCommunication coms, object message)
|
||||
{
|
||||
if (_coms == null)
|
||||
if (coms == null)
|
||||
throw new ArgumentNullException("coms");
|
||||
|
||||
if (message == null)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue