Skip to content

Commit 6f6ba49

Browse files
authored
Update ChatManager.java
1 parent 52178ef commit 6f6ba49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

client/src/main/java/cn/wildfirechat/remote/ChatManager.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ public class ChatManager {
234234

235235
private int backupAddressStrategy = 0;
236236
private String backupAddressHost = null;
237-
private int backupAddressPort = 80;
237+
private int backupAddressPort = 81;
238238
private String protoUserAgent = null;
239239
private final Map<String, String> protoHttpHeaderMap = new ConcurrentHashMap<>();
240240

@@ -7821,14 +7821,14 @@ public String getHost() {
78217821
// shortlink port
78227822
public int getPort() {
78237823
if (!checkRemoteService()) {
7824-
return 80;
7824+
return 81;
78257825
}
78267826

78277827
try {
78287828
return mClient.getPort();
78297829
} catch (RemoteException e) {
78307830
e.printStackTrace();
7831-
return 80;
7831+
return 81;
78327832
}
78337833
}
78347834

0 commit comments

Comments
 (0)