mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-14 03:08:27 -04:00
Updated editorconfig to (mostly?) require braces around if/else statements, and applied the new formatting rules
This commit is contained in:
@@ -67,7 +67,8 @@ public partial class Searches
|
||||
[RequireContext(ContextType.Guild)]
|
||||
public async partial Task StreamList(int page = 1)
|
||||
{
|
||||
if (page-- < 1) return;
|
||||
if (page-- < 1)
|
||||
return;
|
||||
|
||||
var streams = new List<FollowedStream>();
|
||||
await using (var uow = _db.GetDbContext())
|
||||
|
Reference in New Issue
Block a user