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> <modelVersion>4.0.0</modelVersion>
<groupId>com.tonikelope</groupId> <groupId>com.tonikelope</groupId>
<artifactId>MegaBasterd</artifactId> <artifactId>MegaBasterd</artifactId>
<version>7.11</version> <version>7.12</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<dependencies> <dependencies>
<dependency> <dependency>

View File

@ -55,7 +55,7 @@ import javax.swing.UIManager;
*/ */
public final class MainPanel { 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 boolean FORCE_SMART_PROXY = false; //TRUE FOR DEBUGING SMART PROXY
public static final int THROTTLE_SLICE_SIZE = 16 * 1024; public static final int THROTTLE_SLICE_SIZE = 16 * 1024;
public static final int DEFAULT_BYTE_BUFFER_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()); Logger.getLogger(MegaAPI.class.getName()).log(Level.SEVERE, ex.getMessage());

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 188 KiB

After

Width:  |  Height:  |  Size: 193 KiB