mirror of
https://github.com/tonikelope/megabasterd.git
synced 2025-04-30 14:44:33 +02:00
7.12
MegaAPI error retry fix
This commit is contained in:
parent
9cfb26c019
commit
aa94d93be1
2
pom.xml
2
pom.xml
@ -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>
|
||||||
|
@ -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;
|
||||||
|
@ -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());
|
||||||
|
|
||||||
|
@ -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 |
Loading…
x
Reference in New Issue
Block a user