Skip to content

Commit

Permalink
fix: Fix Status log signal count and signal index values
Browse files Browse the repository at this point in the history
Fixes #696
  • Loading branch information
barbeau committed Dec 10, 2024
1 parent aa8a6ff commit a057fe4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public synchronized void onGnssStatusChanged(List<SatelliteStatus> statuses, Loc
int i = 0;
for (SatelliteStatus s : statuses) {
try {
writeStatusToFile(s, location != null ? location.getTime() : 0, i, statuses.size());
writeStatusToFile(s, location != null ? location.getTime() : 0, statuses.size(), i);
} catch (IOException e) {
logException(Application.Companion.getApp().getString(R.string.error_writing_file), e);
}
Expand Down

0 comments on commit a057fe4

Please sign in to comment.