Skip to content

Commit

Permalink
Fix crash going offline in Opus Quad mode
Browse files Browse the repository at this point in the history
  • Loading branch information
brunchboy committed May 11, 2024
1 parent 2c5bab8 commit 1156a6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/deepsymmetry/beatlink/VirtualCdj.java
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,7 @@ public synchronized boolean start(byte deviceNumber) throws Exception {
public synchronized void stop() {
if (isRunning()) {
broadcastAddress.set(null);
matchingInterfaces.clear();
matchingInterfaces = null;
updates.clear();
setTempoMaster(null);

Expand Down

0 comments on commit 1156a6e

Please sign in to comment.