Skip to content

Commit

Permalink
Fixes #904 - Area Profiles Feedback Link CID Generation (#905)
Browse files Browse the repository at this point in the history
* file exact match to file ends with

* cl

* delete artifact
  • Loading branch information
luke11brown authored Nov 19, 2024
1 parent 921db97 commit 5e9f8e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changes from release 2024/11 to 2024/12
1. AIRAC (2412) - Updated Yeovil (EGDY) frequencies to 8.33KHz - thanks to @AdriTheDev (Callum Hicks)
2. Enhancement - Update alias files to reflect new VATSIM CoC - thanks to @AdriTheDev (Callum Hicks)
3. Bug - CID inserted correctly into Area profile feedback link - thanks to @luke11brown (Luke Brown)

# Changes from release 2024/10 to 2024/11
1. Enhancement - Add various aliases to Heathrow (EGLL) profile - thanks to @kristiankunc (Kristián Kunc)
Expand Down
2 changes: 1 addition & 1 deletion UK/LogonDetails.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@

# Adds CID field to feedback link

elif file == "Profiles.txt":
elif file.endswith("Profiles.txt"):
file_path = os.path.join(root,file)
with open(file_path,'r') as f:
line = f.read()
Expand Down

0 comments on commit 5e9f8e6

Please sign in to comment.