mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-08-24 14:33:17 +02:00
NullPointer Fix. Thanks to cyian-1756
This commit is contained in:
@@ -399,6 +399,10 @@ public class DeviantartRipper extends AbstractHTMLRipper {
|
|||||||
*/
|
*/
|
||||||
private void updateCookie(Map<String, String> m) {
|
private void updateCookie(Map<String, String> m) {
|
||||||
|
|
||||||
|
if (m == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
Iterator<String> iter = m.keySet().iterator();
|
Iterator<String> iter = m.keySet().iterator();
|
||||||
while (iter.hasNext()) {
|
while (iter.hasNext()) {
|
||||||
String current = iter.next();
|
String current = iter.next();
|
||||||
|
Reference in New Issue
Block a user