Skip to content

Commit

Permalink
CU-8685awfkp fixing server to not return null for oss version
Browse files Browse the repository at this point in the history
  • Loading branch information
ucswift committed Jun 22, 2024
1 parent 7f1441c commit b7d0dae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Resgrid.Services/SubscriptionsService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public async Task<DepartmentPlanCount> GetPlanCountsForDepartmentAsync(int depar
return response.Data.Data;
}

return null;
return new DepartmentPlanCount();
}

public async Task<Payment> GetCurrentPaymentForDepartmentAsync(int departmentId, bool byPassCache = true)
Expand Down

0 comments on commit b7d0dae

Please sign in to comment.