This commit is contained in:
2025-09-16 14:20:27 +02:00
parent 5931143564
commit 17e46ed0b2
2 changed files with 1 additions and 7 deletions

View File

@@ -43,12 +43,6 @@
<url type="vcs-browser">https://gitea.farmdash.org/angoosh/Flatpaks/src/branch/main/com.angoosh.RDPConnect</url>
<releases>
<release version="1.0.2" date="2024-11-20">
<url type="details">https://gitea.farmdash.org/angoosh/Flatpaks/commit/85ea660c7e11d0c65c8aef23fcf76853882975cf</url>
<description>
<p>Password is now encrypted</p>
</description>
</release>
<release version="1.0.3" date="2024-11-20">
<url type="details">https://gitea.farmdash.org/angoosh/Flatpaks/commit/2093a21ecfa86c20f15b9b44897d1c7bebfafd79</url>
<description>

View File

@@ -51,7 +51,7 @@ def load_config():
loaded_json = ""
try:
with open(HOMEDIR+"/.config/rdpconnect/history.json", "r") as history_file:
for line in connection_file:
for line in history_file:
loaded_json += line
hist_info = json.loads(loaded_json)