Skip to content

Commit

Permalink
Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sim0n00ps committed Jul 14, 2024
1 parent c844a21 commit f2f6b14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OF DL/Helpers/APIHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ public async Task<PostCollection> GetPosts(string endpoint, string folder, IDown
continue;
}

if (post.text != null && (post.text.Contains("#ad") || post.text.Contains("/trial/") || post.rawText.Contains("#announcement")))
if (post.text != null && (post.text.Contains("#ad") || post.text.Contains("/trial/") || post.text.Contains("#announcement")))
{
continue;
}
Expand Down

0 comments on commit f2f6b14

Please sign in to comment.