diff options
author | Volpeon <git@volpeon.ink> | 2021-12-04 07:21:44 +0100 |
---|---|---|
committer | Volpeon <git@volpeon.ink> | 2021-12-04 07:21:44 +0100 |
commit | b7b0269b29301c1bfe5d2085021360f3b8a9fff6 (patch) | |
tree | c74d933132c0bf59ed02819a19bf64bb31f25f84 /src/config.ts | |
parent | More tags to exclude (diff) | |
download | feralbot-b7b0269b29301c1bfe5d2085021360f3b8a9fff6.tar.gz feralbot-b7b0269b29301c1bfe5d2085021360f3b8a9fff6.tar.bz2 feralbot-b7b0269b29301c1bfe5d2085021360f3b8a9fff6.zip |
Bump minimum score for posts older than 1 year
Diffstat (limited to 'src/config.ts')
-rw-r--r-- | src/config.ts | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/config.ts b/src/config.ts index 32384e5..abcf00f 100644 --- a/src/config.ts +++ b/src/config.ts | |||
@@ -27,7 +27,6 @@ const mainQuery: GetPostQuery = { | |||
27 | "-hyper", | 27 | "-hyper", |
28 | "-pregnant", | 28 | "-pregnant", |
29 | "-lips", | 29 | "-lips", |
30 | "-dress", | ||
31 | "-crossdressing", | 30 | "-crossdressing", |
32 | "-mouth_shot", | 31 | "-mouth_shot", |
33 | "-animated", | 32 | "-animated", |
@@ -40,7 +39,6 @@ const mainQuery: GetPostQuery = { | |||
40 | "-photography_(artwork)", | 39 | "-photography_(artwork)", |
41 | "-3d_(artwork)", | 40 | "-3d_(artwork)", |
42 | "status:active", | 41 | "status:active", |
43 | "score:>=20", | ||
44 | "inpool:false", | 42 | "inpool:false", |
45 | ], | 43 | ], |
46 | tagsBlacklist: [ | 44 | tagsBlacklist: [ |
@@ -52,7 +50,8 @@ const mainQuery: GetPostQuery = { | |||
52 | "huge_butt", | 50 | "huge_butt", |
53 | "dakimakura_design", | 51 | "dakimakura_design", |
54 | "overweight", | 52 | "overweight", |
55 | "big_belly" | 53 | "big_belly", |
54 | "dress", | ||
56 | ], | 55 | ], |
57 | maxPage: 121, | 56 | maxPage: 121, |
58 | }; | 57 | }; |
@@ -61,7 +60,16 @@ export default { | |||
61 | e621: { | 60 | e621: { |
62 | userAgent: "@feralbot@botsin.space (by RedFoxxo)", | 61 | userAgent: "@feralbot@botsin.space (by RedFoxxo)", |
63 | queries: [ | 62 | queries: [ |
64 | mainQuery, | 63 | { |
64 | ...mainQuery, | ||
65 | tags: [...mainQuery.tags, "score:>=20", "date:1_years_ago"], | ||
66 | maxPage: 33, | ||
67 | }, | ||
68 | { | ||
69 | ...mainQuery, | ||
70 | tags: [...mainQuery.tags, "score:>=30", "date:..1_years_ago"], | ||
71 | maxPage: 45, | ||
72 | }, | ||
65 | ], | 73 | ], |
66 | blacklist: [672088, 1064946, 2495430, 2408200, 2588693, 2864729, 356070, 2701998, 2486370, 1926597], | 74 | blacklist: [672088, 1064946, 2495430, 2408200, 2588693, 2864729, 356070, 2701998, 2486370, 1926597], |
67 | }, | 75 | }, |