Skip to content

Commit

Permalink
Restore original logic to generate circit address in rfid.js
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemhall committed Sep 26, 2024
1 parent 7ce4ed1 commit 0851ed3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Koha/Plugin/Com/ByWaterSolutions/RFID/static_files/rfid.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
const circit_address = `http://localhost:80/Temporary_Listen_Addresses`;
const circit_port = TechLogicCircItNonAdministrativeMode
? "80/Temporary_Listen_Addresses"
: TechLogicCircItPort
? TechLogicCircItPort
: "9201";
const circit_address = `http://localhost:${circit_port}`;

// Sometimes we need to halt processing on non-batch pages and continue after the issue has been resolved
let continue_processing = false;
Expand Down

0 comments on commit 0851ed3

Please sign in to comment.