MegaAPI error retry fix
This commit is contained in:
tonikelope 2020-01-20 02:44:10 +01:00
parent 9cfb26c019
commit aa94d93be1
5 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.tonikelope</groupId>
<artifactId>MegaBasterd</artifactId>
<version>7.11</version>
<version>7.12</version>
<packaging>jar</packaging>
<dependencies>
<dependency>

View File

@ -55,7 +55,7 @@ import javax.swing.UIManager;
*/
public final class MainPanel {
public static final String VERSION = "7.11";
public static final String VERSION = "7.12";
public static final boolean FORCE_SMART_PROXY = false; //TRUE FOR DEBUGING SMART PROXY
public static final int THROTTLE_SLICE_SIZE = 16 * 1024;
public static final int DEFAULT_BYTE_BUFFER_SIZE = 16 * 1024;

View File

@ -484,7 +484,7 @@ public class MegaAPI implements Serializable {
}
} catch (Exception ex) {
} catch (IOException ex) {
Logger.getLogger(MegaAPI.class.getName()).log(Level.SEVERE, ex.getMessage());

View File

@ -97,8 +97,8 @@ public class MegaCrypterAPI {
}
}
} catch (Exception ex) {
Logger.getLogger(MegaAPI.class.getName()).log(Level.SEVERE, ex.getMessage());
} catch (IOException ex) {
Logger.getLogger(MegaCrypterAPI.class.getName()).log(Level.SEVERE, ex.getMessage());
} finally {
if (con != null) {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 188 KiB

After

Width:  |  Height:  |  Size: 193 KiB