Skip to content

Commit 49ee626

Browse files
author
tonikelope
committed
7.61
1 parent 2120f62 commit 49ee626

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.tonikelope</groupId>
55
<artifactId>MegaBasterd</artifactId>
6-
<version>7.60</version>
6+
<version>7.61</version>
77
<packaging>jar</packaging>
88
<dependencies>
99
<dependency>

src/main/java/com/tonikelope/megabasterd/MainPanel.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
*/
6868
public final class MainPanel {
6969

70-
public static final String VERSION = "7.60";
70+
public static final String VERSION = "7.61";
7171
public static final boolean FORCE_SMART_PROXY = false; //TRUE FOR DEBUGING SMART PROXY
7272
public static final int THROTTLE_SLICE_SIZE = 16 * 1024;
7373
public static final int DEFAULT_BYTE_BUFFER_SIZE = 16 * 1024;

src/main/java/com/tonikelope/megabasterd/MegaAPI.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ private String _rawRequest(String request, URL url_api) throws MegaAPIException
538538

539539
}
540540

541-
} while (empty_response || mega_error != 0 || (http_error == 509 && MainPanel.isUse_smart_proxy() && !MainPanel.isUse_proxy()));
541+
} while (http_error == 500 || empty_response || mega_error != 0 || (http_error == 509 && MainPanel.isUse_smart_proxy() && !MainPanel.isUse_proxy()));
542542

543543
_seqno++;
544544

src/main/java/com/tonikelope/megabasterd/SettingsDialog.java

+8
Original file line numberDiff line numberDiff line change
@@ -2025,6 +2025,14 @@ private void save_buttonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-F
20252025

20262026
String pass = (String) model.getValueAt(i, 1);
20272027

2028+
int j = i;
2029+
2030+
MiscTools.GUIRun(() -> {
2031+
2032+
status.setText(LabelTranslatorSingleton.getInstance().translate("Checking your MEGA accounts, please wait... ") + email + " (" + String.valueOf(j + 1) + "/" + String.valueOf(model_row_count) + ")");
2033+
2034+
});
2035+
20282036
if (!email.isEmpty() && !pass.isEmpty()) {
20292037

20302038
new_valid_mega_accounts.add(email);
-2.51 KB
Loading

0 commit comments

Comments
 (0)