Skip to content

Commit

Permalink
if (this.configSettings.OrderSyncById == true)
Browse files Browse the repository at this point in the history
to
 if (this.configSettings.OrderSyncById)
as OrderSyncById is not nullable
  • Loading branch information
jchande committed Dec 12, 2019
1 parent 5c87231 commit b1508a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SyllabusPlusSchedulerService/SchedulerService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ private void ScheduleRecordings()
{
using (SyllabusPlusDBContext db = new SyllabusPlusDBContext())
{
if (this.configSettings.OrderSyncById == true)
if (this.configSettings.OrderSyncById)
{
schedule =
db.SchedulesTable.Select(s => s)
Expand Down

0 comments on commit b1508a7

Please sign in to comment.