Skip to content

Commit 8a34b84

Browse files
committed
BUGFIX:
- LotAtc: checked the wrong version
1 parent fcc311e commit 8a34b84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/lotatc/extension.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ async def check_for_updates(self) -> Optional[str]:
232232
root = ET.fromstring(await response.text(encoding='utf-8'))
233233
for package in root.findall('.//PackageUpdate'):
234234
name = package.find('Name')
235-
if name is not None and name.text == 'com.lotatc.server':
235+
if name is not None and name.text == 'com.lotatc.server.server23':
236236
version = package.find('Version')
237237
if version is not None:
238238
break

0 commit comments

Comments
 (0)