From 7fd71d9b6caea947208b621623b050a65101c412 Mon Sep 17 00:00:00 2001 From: smoogipoo Date: Fri, 21 Feb 2020 19:50:16 +0900 Subject: [PATCH] Adjust conditional --- osu.Game/Overlays/Comments/CommentsContainer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Overlays/Comments/CommentsContainer.cs b/osu.Game/Overlays/Comments/CommentsContainer.cs index 5a04f6b4c4..591a9dc86e 100644 --- a/osu.Game/Overlays/Comments/CommentsContainer.cs +++ b/osu.Game/Overlays/Comments/CommentsContainer.cs @@ -147,7 +147,7 @@ private void refetchComments() private void getComments() { - if (id.Value == 0) + if (id.Value <= 0) return; request?.Cancel();