Skip to content

Commit

Permalink
fix: !=ミス
Browse files Browse the repository at this point in the history
  • Loading branch information
book000 committed Aug 15, 2022
1 parent 1544a9d commit 7456531
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ private static void containerUp(int containerId, String roomId) throws RuntimeEx
"-e",
"CHATWATCHER_ROOM_ID=" + roomId,
"-e",
"DISPLAY=" + (System.getenv("RECOGNIZER_DISPLAY") !== null ? System.getenv("RECOGNIZER_DISPLAY") : ":99"),
"DISPLAY=" + (System.getenv("RECOGNIZER_DISPLAY") != null ? System.getenv("RECOGNIZER_DISPLAY") : ":99"),
"-e",
"RECOGNIZER_HEADLESS=false",
"--net=chatwatcher-network",
Expand Down

0 comments on commit 7456531

Please sign in to comment.