Skip to content

Commit 23f1017

Browse files
committed
Fix LOTW upload response string match
Removed extra space in the LOTW upload response string to correctly detect successful uploads.
1 parent ceb0c2f commit 23f1017

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

application/controllers/Lotw.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ public function lotw_upload() {
320320
echo $station_profile->station_callsign." (".$station_profile->station_profile_name.") Upload Failed"."<br>";
321321
}
322322

323-
$pos = strpos($result, "<!-- .UPL. accepted -->");
323+
$pos = strpos($result, "<!-- .UPL. accepted -->");
324324

325325
if ($pos === false) {
326326
// Upload of TQ8 Failed for unknown reason

0 commit comments

Comments
 (0)