Skip to content

Commit aeac9cf

Browse files
committed
fix
1 parent bf67441 commit aeac9cf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

backend/src/plugins/Automod/actions/startThread.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const StartThreadAction = automodAction({
2727
const threads = contexts.filter((c) => {
2828
if (!c.message || !c.user) return false;
2929
const channel = pluginData.guild.channels.cache.get(c.message.channel_id);
30-
console.log(JSON.stringify(channel))
30+
console.log(JSON.stringify(channel));
3131
if (channel?.type !== ChannelType.GuildText || !channel.isTextBased()) return false; // for some reason the typing here for channel.type defaults to ThreadChannelTypes (?)
3232
// check against max threads per channel
3333
if (actionConfig.limit_per_channel && actionConfig.limit_per_channel > 0) {

docker-compose.standalone.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ services:
3232
# - "${STANDALONE_WEB_PORT:?Missing STANDALONE_WEB_PORT}:443"
3333

3434
migrate:
35-
image: ghcr.io/rubyowo/zeppelin:coolify
35+
image: ghcr.io/rubyowo/zeppelin:stock
3636
# Pull new image every deployment
3737
pull_policy: always
3838
depends_on:
@@ -53,7 +53,7 @@ services:
5353
restart: no
5454

5555
api:
56-
image: ghcr.io/rubyowo/zeppelin:coolify
56+
image: ghcr.io/rubyowo/zeppelin:stock
5757
depends_on:
5858
migrate:
5959
condition: service_completed_successfully
@@ -65,7 +65,7 @@ services:
6565
command: ["npm", "run", "start-api-prod"]
6666

6767
bot:
68-
image: ghcr.io/rubyowo/zeppelin:coolify
68+
image: ghcr.io/rubyowo/zeppelin:stock
6969
depends_on:
7070
migrate:
7171
condition: service_completed_successfully
@@ -77,7 +77,7 @@ services:
7777
command: ["npm", "run", "start-bot-prod"]
7878

7979
dashboard:
80-
image: ghcr.io/rubyowo/zeppelin:coolify
80+
image: ghcr.io/rubyowo/zeppelin:stock
8181
depends_on:
8282
migrate:
8383
condition: service_completed_successfully

0 commit comments

Comments
 (0)