1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-15 10:24:04 +02:00

Fixup Luscious syntax error

This commit is contained in:
MetaPrime
2025-01-02 01:06:10 -08:00
parent d6b8bf2d08
commit 3b9352fb14

View File

@@ -85,7 +85,7 @@ public class LusciousRipper extends AbstractHTMLRipper {
@Override @Override
public String getGID(URL url) throws MalformedURLException { public String getGID(URL url) throws MalformedURLException {
Matcher m = P.matcher(url.toExternalForm()); Matcher m = p.matcher(url.toExternalForm());
if (m.matches()) { if (m.matches()) {
albumid = m.group(1).split("_")[m.group(1).split("_").length - 1]; albumid = m.group(1).split("_")[m.group(1).split("_").length - 1];
return m.group(1); return m.group(1);