Browse Source

fix merging problem

philippdormann/feature/release-management
LouisLam 3 years ago
parent
commit
d4fe5908f5
  1. 3
      dockerfile
  2. 1
      server/notification.js

3
dockerfile

@ -10,6 +10,9 @@ COPY . .
RUN npm install RUN npm install
RUN npm run build RUN npm run build
# Remove built tools
RUN apk del make g++
EXPOSE 3001 EXPOSE 3001
VOLUME ["/app/data"] VOLUME ["/app/data"]
CMD ["npm", "run", "start-server"] CMD ["npm", "run", "start-server"]

1
server/notification.js

@ -92,7 +92,6 @@ class Notification {
console.log(error) console.log(error)
return false; return false;
} }
return await Notification.discord(notification, msg)
} else if (notification.type === "signal") { } else if (notification.type === "signal") {
try { try {

Loading…
Cancel
Save