1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-23 22:14:06 +02:00

NullPointer Fix. Thanks to cyian-1756

This commit is contained in:
MrPlaygon
2019-04-06 10:26:00 +02:00
parent ed2082dfe8
commit 10663b0fed

View File

@@ -399,6 +399,10 @@ public class DeviantartRipper extends AbstractHTMLRipper {
*/
private void updateCookie(Map<String, String> m) {
if (m == null) {
return;
}
Iterator<String> iter = m.keySet().iterator();
while (iter.hasNext()) {
String current = iter.next();