Skip to content

Commit

Permalink
Correct query port error V0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurMitchell42 committed Dec 22, 2023
1 parent 5d89c9f commit 1c5c3f2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ Currently supports 'AMD64', 'ARM64 (ARM64V8)' (suitable for running on docker un
</thead>
<tbody>
<tr>
<td align="left">22/12/2023</td>
<td align="left">0.2.1</td>
<td align="left">Corrected error relating to the query port command.</td>
</tr>
<tr>
<td align="left">16/12/2023</td>
<td align="left">0.2.0</td>
<td align="left">APC Support with other features, See GitHub notes.</td>
Expand Down
2 changes: 1 addition & 1 deletion app/globals.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#==============================================================
# Global declarations for information used in multiple modules
#==============================================================
App_Version = "0.2.0"
App_Version = "0.2.1"
Config = None
Config_Path = str
Log_File = str
Expand Down
2 changes: 1 addition & 1 deletion app/http_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def do_GET(self):
#====================================================================================
Target_Resolved, Target_Address, Parameter_Port = Resolve_Address_And_Port( URL_Parameters )
if Parameter_Port:
Target_Port = Parameter_Port
Target_Port = int(Parameter_Port)

if not Target_Resolved:
Lines = [ "<pre>Target address not resolved: <b>{}</b></pre>".format( URL_Parameters ) ]
Expand Down

0 comments on commit 1c5c3f2

Please sign in to comment.