mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2024-11-10 09:07:47 +01:00
Merge pull request #124 from ajayyy/experimental
Fix all submissions being sent to first time submissions channel
This commit is contained in:
commit
f2265f0dce
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ function sendWebhooks(userID, videoID, UUID, segmentInfo) {
|
|||
|
||||
// If it is a first time submission
|
||||
// Then send a notification to discord
|
||||
if (config.discordFirstTimeSubmissionsWebhookURL === null) return;
|
||||
if (config.discordFirstTimeSubmissionsWebhookURL === null || userSubmissionCountRow.submissionCount <= 1) return;
|
||||
request.post(config.discordFirstTimeSubmissionsWebhookURL, {
|
||||
json: {
|
||||
"embeds": [{
|
||||
|
|
Loading…
Reference in a new issue