Skip to content

Commit

Permalink
Merge pull request #79 from HerrMagiic/main
Browse files Browse the repository at this point in the history
Fix Incorrect Appeal URL in Discord Message
  • Loading branch information
hobsRKM authored Jun 28, 2024
2 parents 3005a63 + 96b789d commit c676d10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Helpers/CommonHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public static function sendActionLog($action, $actionId)
$appUrl = env('APP_URL');
$website = "[CSS-BANS]($appUrl)";
if($action == 'appeal'){
$website = "[View Appeal]($appUrl/appeal/$actionDetails->id)";
$website = "[View Appeal]($appUrl/appeals/$actionDetails->id)";
}else if($action == 'ban' || $action == 'unban') {
$website = "[View Bans]($appUrl/list/bans)";
}else if($action == 'mute' || $action == 'unmute') {
Expand Down

0 comments on commit c676d10

Please sign in to comment.