Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-dietrich committed Sep 7, 2023
2 parents 91cb000 + cb7af00 commit c0573d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN npm run generate
FROM denoland/deno:latest AS s-build
WORKDIR /
COPY server server
RUN deno bundle server/app.ts /app.js
RUN deno bundle --unstable server/app.ts /app.js

FROM denoland/deno:latest
WORKDIR /
Expand Down
2 changes: 1 addition & 1 deletion server/data_web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export const router = new oak.Router()

/* Create live class if doesn't exist - no concept of starting a class */
if (!live_class && class_id) {
const rooms = {
const rooms: Record<string, any> = {
Lobby: {
studentPublicState: '',
teacherPublicState: '',
Expand Down

0 comments on commit c0573d3

Please sign in to comment.