feat: mark f-list as 18+ and disable by default

This commit is contained in:
Anna 2021-04-14 18:22:17 -04:00
parent 8f788e462b
commit 8c7380c3d1
2 changed files with 9 additions and 3 deletions

View File

@ -1,4 +1,10 @@
namespace ExpandedSearchInfo.Configs {
using Newtonsoft.Json;
namespace ExpandedSearchInfo.Configs {
public class FListConfig : BaseConfig {
[JsonConstructor]
public FListConfig() {
this.Enabled = false;
}
}
}
}

View File

@ -12,7 +12,7 @@ namespace ExpandedSearchInfo.Providers {
public class FListProvider : BaseHtmlProvider {
private Plugin Plugin { get; }
public override string Name => "F-List";
public override string Name => "F-List (18+)";
public override string Description => "This provider provides information for F-List URLs. It also searches for F-List profiles matching the character's name if /c/ is in their search info.";