Sourceforge bugfix

This commit is contained in:
Imran Remtulla
2023-04-15 14:34:14 -04:00
parent 666941350e
commit 1090f15508

View File

@@ -31,7 +31,7 @@ class SourceForge extends AppSource {
getVersion(String url) { getVersion(String url) {
try { try {
var tokens = url.split('/'); var tokens = url.split('/');
return tokens[tokens.length - 3]; return tokens[tokens.length - 2];
} catch (e) { } catch (e) {
return null; return null;
} }