Skip to content

Commit

Permalink
update deps and add more ref domains
Browse files Browse the repository at this point in the history
  • Loading branch information
jagrosh committed Jul 6, 2021
1 parent 920e054 commit cbf50be
Show file tree
Hide file tree
Showing 4 changed files with 102 additions and 5 deletions.
92 changes: 92 additions & 0 deletions lists/referral_domains.txt
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,23 @@ minero.cc
outbuck.com

// Scams
alex-nv.ru
alexandrnav.ru
alexandrs1.ru
amazingsexdating.com
clooud9.xyz
cloud9team.fun
cloud9team.space
cloudteam9.com
cloudteam9.fun
cs-moneiy.us
csgocyber.ru
csgocyber.ru
easter-event.com
ezence.ink
ezrobux.gg
fnaticprize.site
fnaticwin.xyz
fortnite.cards
fortnite.events
fortnite-christmas.com
Expand All @@ -122,28 +135,107 @@ fortnite-special.com
fortnite-vbuck.com
fortnite-vbucks.de
fortnite-vbucks.net
fortnite.cards
fortnite.events
fortnitevb.com
free-gg.com
free-steam-code.com
gams-toph.xyz
giveawaybot.pw
intimki.com
katowice.ru
keymagic.me
libra-sale.io
lootweapons.com
magicstreek.me
myetherermwallet.com
natus-vincerygivez.xyz
navi.auction
new-give.com
nv-box.com
nv-drop.com
operation-broken.xyz
oprewards.com
rbxfree.com
roblox-christmas.com
robloxsummer.com
rocketcase.xyz
roll-case.com
rollskin.ru
rustgift.ru
seamcommunlty.com
seamcommunty.com
sleamcomnnunity.me
sleamconnunnity.me
sleamcormunity.me
sreancommuniity.com
staemcommeuneuity.ru
staerncomrmunity.com
steaamcomnnunity.com
steaimeecommuniity.com
steam-event.com
steam-gift-codes.com
steam-money.org
steam-promo-page.ml
steam-wallet-rewards.com
steamcannunlty.com
steamcommanitty.ru
steamcomminiity.site
steamcommnnunnity.world
steamcommnunty.com
steamcommunity-com.xyz
steamcommunniitly.ru
steamcommunyru.com
steamcommunyti.ru
steamcommunytu.ru
steamcomnuniity.ru
steamcomrnuniuty.com
steamcomrrnunity.com
steamcomunity.ru
steamconnunjty.com
steamcornmuniti.xyz
steammcomunity.ru
steamncomnmunity.com
steamprofiles.site
steampromote.com
steamquests.com
steamreward.com
steamspecial.com
steamsummer.com
steamtradeoffer.ml
steancommuinity.me
steancommutitly.ru
steancomunnity.com
steancomunnity.ru
steancoommunlty.ru
steanncomunitly.com
steannconnnnunity.com
stearmcommunitty.ru
stearmcommunity.ru
stearmcommunnitty.ru
stearmcommunnity.ru
steemcommunnity.ru
stermccommunitty.ru
stermcommuniity.com
sterrmccommunity.ru
stleamconnunlty-tyztradeoffernewpartnhr15902271.xyz
streamcommuniuity.com
streamcommunnitly.com
streamcomnunely.com
streancommunitiy.icu
streancommunuty.ru
strearmcomunity.ru
toom-skins.xyz
topr-games.xyz
topw-gamez.xyz
topz-games.xyz
trade-offers.me
whatsappx.com
wild-day.com
winfnatic.pro
wowcloud9.com
wowfnatic.com
wowfnatic.site

// Deceptive Unicode Links
getlⅰbra.tech
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>4.2.1_265</version>
<version>4.3.0_293</version>
</dependency>
<dependency>
<groupId>com.jagrosh</groupId>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/jagrosh/vortex/Vortex.java
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ public void cleanPremium()
database.automod.setResolveUrls(gid, false);
database.settings.setAvatarLogChannel(gid, null);
database.settings.setVoiceLogChannel(gid, null);
database.settings.setServerLogChannel(gid, null);
database.filters.deleteAllFilters(gid);
for(int i = 0; i < shards.size() - 1; i++)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
import java.time.zone.ZoneRulesException;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import net.dv8tion.jda.api.entities.Guild;
import net.dv8tion.jda.api.entities.Guild.VerificationLevel;
import net.dv8tion.jda.api.entities.MessageEmbed.Field;
Expand Down Expand Up @@ -149,8 +148,13 @@ public void setModLogChannel(Guild guild, TextChannel tc)

public void setServerLogChannel(Guild guild, TextChannel tc)
{
invalidateCache(guild);
readWrite(select(GUILD_ID.is(guild.getIdLong()), GUILD_ID, SERVERLOG_ID), rs ->
setServerLogChannel(guild.getIdLong(), tc);
}

public void setServerLogChannel(long guildId, TextChannel tc)
{
invalidateCache(guildId);
readWrite(select(GUILD_ID.is(guildId), GUILD_ID, SERVERLOG_ID), rs ->
{
if(rs.next())
{
Expand All @@ -160,7 +164,7 @@ public void setServerLogChannel(Guild guild, TextChannel tc)
else
{
rs.moveToInsertRow();
GUILD_ID.updateValue(rs, guild.getIdLong());
GUILD_ID.updateValue(rs, guildId);
SERVERLOG_ID.updateValue(rs, tc==null ? 0L : tc.getIdLong());
rs.insertRow();
}
Expand Down

0 comments on commit cbf50be

Please sign in to comment.