URLs on the site have changed, the Video-IDs are no longer numeric but alphanumeric now, i.e. replace \d with \w
Patch:
Code:
Index: src/jd/plugins/hoster/PornezNet.java
===================================================================
--- src/jd/plugins/hoster/PornezNet.java
+++ src/jd/plugins/hoster/PornezNet.java
@@ -64,7 +64,7 @@ public class PornezNet extends PluginForHost {
public static String[] getAnnotationUrls() {
final List<String> ret = new ArrayList<String>();
for (final String[] domains : getPluginDomains()) {
- ret.add("https?://(?:www\\.)?" + buildHostsPatternPart(domains) + "/video(\\d+)(/([a-z0-9\\-]+)/?)?");
+ ret.add("https?://(?:www\\.)?" + buildHostsPatternPart(domains) + "/video(\\w+)(/([a-z0-9\\-]+)/?)?");
}
return ret.toArray(new String[0]);
}