Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
im-calvin committed Nov 1, 2023
1 parent b03ec07 commit 91f9bac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ services:
- /home/kwong/mittens/data:/app/data
environment:
DOTENV_KEY: ${DOTENV_KEY}
PUID: 1001
PGID: 1001
UMASK: 022
2 changes: 1 addition & 1 deletion src/utils/schedule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export async function scrape() {
// TODO for egora: is there a better way of optimizing saves and fetches from the database than doing them manually like this (cascade option in save?)
// if successful:
// update the video_participants table
const participants = [];
const participants: VideoParticipant[] = [];
if (video.mentions !== undefined) {
for (const vid_streamer of video.mentions) {
const db_streamer = await streamerRepo.findOneBy({
Expand Down

0 comments on commit 91f9bac

Please sign in to comment.