Skip to content

Commit

Permalink
Properly track new ip-ids
Browse files Browse the repository at this point in the history
Signed-off-by: applenick <[email protected]>
  • Loading branch information
applenick committed Aug 21, 2023
1 parent b9aede6 commit 1fad4c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void trackIp(UUID id, String address) {

if (result == null) {
// Track a new ip-id
DB.executeUpdateAsync(INSERT_IP_QUERY, address, UUID.randomUUID().toString());
DB.executeUpdateAsync(INSERT_IP_QUERY, address, ipId);
} else {
ipId = result.getString(IP_ID_FIELD);
}
Expand Down

0 comments on commit 1fad4c6

Please sign in to comment.