Skip to content

Commit

Permalink
Quick fix GetChanneliCalendar (#390)
Browse files Browse the repository at this point in the history
Added return string as quick fix.
  • Loading branch information
Mahsaap authored May 27, 2024
1 parent 1ac5740 commit b097221
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TwitchLib.Api.Helix/Schedule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public Task DeleteChannelStreamScheduleSegmentAsync(string broadcasterId, string
/// </summary>
/// <param name="broadcasterId">User ID of the broadcaster who owns the channel streaming schedule.</param>
/// <returns></returns>
public Task GetChanneliCalendarAsync(string broadcasterId)
public Task<string> GetChanneliCalendarAsync(string broadcasterId)
{
var getParams = new List<KeyValuePair<string, string>>
{
Expand All @@ -197,4 +197,4 @@ public Task GetChanneliCalendarAsync(string broadcasterId)
return TwitchGetAsync("/schedule/icalendar", ApiVersion.Helix, getParams);
}
}
}
}

0 comments on commit b097221

Please sign in to comment.