Skip to content

Commit 93e72b1

Browse files
author
arch
committed
improve installer
1 parent 85e845f commit 93e72b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/Installer/mtfg-ofs-extension-installer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def get_download_urls_with_api():
6666
try:
6767
response = requests.get(LATEST_RELEASE_API_URL).json()
6868
assets_download_urls = ([x['browser_download_url'] for x in response['assets'] if 'browser_download_url' in x])
69-
program_download_url = [x for x in assets_download_urls if x.lower().endswith('.zip')]
69+
program_download_url = [x for x in assets_download_urls if x.lower().endswith('.zip') and "funscript-editor" in x ]
7070
if len(program_download_url) == 0:
7171
error("MTFG Release not found")
7272

0 commit comments

Comments
 (0)