Skip to content

Commit 233855c

Browse files
committed
Better UTF8 handling
1 parent 74ce766 commit 233855c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

codec2talkie/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ android {
1414
applicationId "com.radio.codec2talkie"
1515
minSdkVersion 23
1616
targetSdkVersion 35
17-
versionCode 186
18-
versionName "1.86"
17+
versionCode 187
18+
versionName "1.87"
1919

2020
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2121
}

codec2talkie/src/main/java/com/radio/codec2talkie/protocol/AprsIs.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ private void runWrite(TcpIp tcpIp) {
369369
Log.d(TAG, "APRS-IS TX: " + DebugTools.bytesToDebugString(line.getBytes(StandardCharsets.ISO_8859_1)));
370370
try {
371371
line += "\n";
372-
tcpIp.write(line.getBytes());
372+
tcpIp.write(line.getBytes(StandardCharsets.ISO_8859_1));
373373
} catch (IOException e) {
374374
Log.w(TAG, "Lost connection on transmit");
375375
Toast.makeText(_context, _context.getString(R.string.aprsis_disconnected), Toast.LENGTH_LONG).show();

0 commit comments

Comments
 (0)