Skip to content

Commit

Permalink
Made questionable pictures stop having nsfw rating
Browse files Browse the repository at this point in the history
  • Loading branch information
fgRuslan committed Aug 26, 2019
1 parent 6c92946 commit fcdad10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DanEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public string downloadPosts(string domain, string tags, int page, bool keepOrigi
if (includeRating)
{
if (rating == "q")
ratingstr = "nsfw ";
ratingstr = "questionable ";
if (rating == "e")
ratingstr = "nsfw ";
if (rating == "s")
Expand Down
2 changes: 1 addition & 1 deletion GelEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public string downloadPosts(string domain, string tags, int page, bool keepOrigi
if (includeRating)
{
if (rating == "q")
ratingstr = "nsfw ";
ratingstr = "questionable ";
if (rating == "e")
ratingstr = "nsfw ";
if (rating == "s")
Expand Down

0 comments on commit fcdad10

Please sign in to comment.