Skip to content

Commit

Permalink
1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
steely-glint committed Oct 8, 2022
1 parent 3247d89 commit 32009e3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.ipseorama</groupId>
<artifactId>slice</artifactId>
<version>1.1.4-SNAPSHOT</version>
<version>1.1.4</version>
<packaging>jar</packaging>
<repositories>
<repository>
Expand All @@ -22,7 +22,7 @@
<dependency>
<groupId>com.phono</groupId>
<artifactId>srtplight</artifactId>
<version>1.1.10-SNAPSHOT</version>
<version>1.1.10</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ public void sendTo(byte[] buf, int off, int len) throws IOException {
ch.write(src);
} catch (IOException x) {
Log.warn("Error sending to " + name);
setState(RTCIceCandidatePairState.FAILED);
throw x;
}
} else {
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/ipseorama/slice/ORTC/RTCIceTransport.java
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public RTCIceCandidatePair nextCheck(RTCIceCandidatePairState targetState) {
.findFirst();
}
} else {
Log.info("still gathering...");
Log.debug("still gathering...");
}
return ((ret != null) && ret.isPresent()) ? ret.get() : null;
}
Expand Down Expand Up @@ -477,7 +477,7 @@ public boolean setSelected(RTCIceCandidatePair sel) {
}

public void disconnectedSelected() {
Log.debug("IceTransport disconnected ...because no packets received on " + selectedPair == null ? "" : selectedPair.toString());
Log.debug("IceTransport disconnected ...because no packets received on " + ((selectedPair == null) ? "" : selectedPair.toString()));
this.setState(RTCIceTransportState.DISCONNECTED);
}

Expand Down

0 comments on commit 32009e3

Please sign in to comment.