We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcc311e commit 8a34b84Copy full SHA for 8a34b84
extensions/lotatc/extension.py
@@ -232,7 +232,7 @@ async def check_for_updates(self) -> Optional[str]:
232
root = ET.fromstring(await response.text(encoding='utf-8'))
233
for package in root.findall('.//PackageUpdate'):
234
name = package.find('Name')
235
- if name is not None and name.text == 'com.lotatc.server':
+ if name is not None and name.text == 'com.lotatc.server.server23':
236
version = package.find('Version')
237
if version is not None:
238
break
0 commit comments