Skip to content

Commit

Permalink
Missed a section of code (#20)
Browse files Browse the repository at this point in the history
* Fix for OnBeingHosted event

* Better Exception Handling in base TwitchClient

* Update Version

* oops missed a bit
  • Loading branch information
LuckyNoS7evin authored Mar 18, 2018
1 parent fca16d1 commit 20593fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TwitchLib.Unity/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ public Client() : base(null)
/// <param name="channel">JoinedChannel object to designate which channel to send request to.</param>
public new void GetChannelModerators(JoinedChannel channel)
{
if (!IsInitialized) HandleNotInitialized();
//if (!IsInitialized) HandleNotInitialized();
if (OnModeratorsReceived == null)
throw new EventNotHandled("OnModeratorsReceived");
SendMessage(channel, "/mods");
Expand Down

0 comments on commit 20593fb

Please sign in to comment.