Skip to content

Commit

Permalink
fix ipintel caching to db not working. (#83046)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrStonedOne committed May 6, 2024
1 parent 4fb33f8 commit f29af7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/controllers/subsystem/ipintel.dm
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ SUBSYSTEM_DEF(ipintel)
var/datum/db_query/query = SSdbcore.NewQuery(
"INSERT INTO [format_table_name("ipintel")] ( \
ip, \
intel, \
intel \
) VALUES ( \
INET_ATON(:address) \
:result, \
INET_ATON(:address), \
:result \
)", list(
"address" = intel.address,
"result" = intel.result,
Expand Down

0 comments on commit f29af7a

Please sign in to comment.