Skip to content

Commit

Permalink
deploy: d185096
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangdat committed Dec 28, 2024
1 parent d55dad5 commit a38c1bf
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion 3383/flutter_bootstrap.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions 3383/flutter_service_worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,8 @@ const RESOURCES = {"icons/Icon-maskable-192.png": "009a8eae32218365ab20cce81aa89
"splash/splash.js": "123c400b58bea74c1305ca3ac966748d",
"main.dart.js_8.part.js": "82411a44c43afd84ff221abf68d10929",
"main.dart.js_2.part.js": "9801d3c025ef7a880b47452bd990aaca",
"index.html": "3ce54bb7aa52b76a54070fbff24d1353",
"/": "3ce54bb7aa52b76a54070fbff24d1353",
"index.html": "85fbac47e69849c6f49329c6b140ce97",
"/": "85fbac47e69849c6f49329c6b140ce97",
"main.dart.js_1.part.js": "d66b4d64cf735516b5ebe639acd6c66e",
"favicon.svg": "1734d2c8d930abd57ebba9c158506714",
"main.dart.js_6.part.js": "4c344e180fa47a08373c5b10641c863a",
Expand All @@ -342,7 +342,7 @@ const RESOURCES = {"icons/Icon-maskable-192.png": "009a8eae32218365ab20cce81aa89
"login-callback.html": "e17f83d4982ea3cce6e692b31c4b4beb",
"logout-callback.html": "999326dc9a0f37c9a9a4280b4a35dc51",
"main.dart.js_7.part.js": "924c85cdd5ece7811a3552401a06e99b",
"flutter_bootstrap.js": "352dae3e8bfdccb215f116916595856f",
"flutter_bootstrap.js": "10b6baff8b94e55b8da508307ebde762",
"worker_service/img/ic-close-1x.png": "27b9c71ff0cf463da5f1affb11b4c204",
"worker_service/img/tmail-3x.png": "7b5f8e671c4f39ae5d1a67b46fe494d7",
"worker_service/img/tmail-2x.png": "55f91555db37edb9ed0608f7ee3f37ee",
Expand All @@ -355,7 +355,7 @@ const RESOURCES = {"icons/Icon-maskable-192.png": "009a8eae32218365ab20cce81aa89
"worker_service/style.css": "3ec186c93eb7bdab17e882de738e3123",
"main.dart.js_4.part.js": "d76c1332db1f681848d348699b85bc4c",
"main.dart.js_5.part.js": "36a0fa95cdbd45da35091a88e44334a2",
"main.dart.js": "96595e1001b078dccd6c584a9e8d260a",
"main.dart.js": "c6327fa5fa49d9fc834e9aaa01446c6e",
"main.dart.js_3.part.js": "69ec72afffb27201a73d9811892bedbc"};
// The application shell files that are downloaded before a service worker can
// start.
Expand Down
2 changes: 1 addition & 1 deletion 3383/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@

_flutter.loader.load({
serviceWorkerSettings: {
serviceWorkerVersion: "634606058",
serviceWorkerVersion: "1005327320",
},
onEntrypointLoaded: async function(engineInitializer) {
const appRunner = await engineInitializer.initializeEngine();
Expand Down
18 changes: 10 additions & 8 deletions 3383/main.dart.js
Original file line number Diff line number Diff line change
Expand Up @@ -93261,9 +93261,10 @@
},
_EmailsResponse_Object_EquatableMixin: function _EmailsResponse_Object_EquatableMixin() {
},
EmptyMailboxResponse: function EmptyMailboxResponse(t0, t1) {
EmptyMailboxResponse: function EmptyMailboxResponse(t0, t1, t2) {
this.isSuccess = t0;
this.deletedCount = t1;
this.destroyedCount = t1;
this.notFoundCount = t2;
},
_EmptyMailboxResponse_Object_EquatableMixin: function _EmptyMailboxResponse_Object_EquatableMixin() {
},
Expand Down Expand Up @@ -398165,7 +398166,7 @@
deleteEmailsBaseOnQuery$body$ThreadAPI(session, accountId, filter, sort) {
var $async$goto = 0,
$async$completer = A._makeAsyncAwaitCompleter(type$.EmptyMailboxResponse),
$async$returnValue, $async$self = this, setEmailMethod, t3, setEmailInvocation, result, queryResponse, setEmailResponse, destroyed, queriedCount, destroyedCount, processingInvocation, t1, t2, jmapRequestBuilder, queryEmailMethod;
$async$returnValue, $async$self = this, setEmailMethod, t3, setEmailInvocation, result, queryResponse, setEmailResponse, destroyed, queriedCount, destroyedCount, notFoundErrorCounter, processingInvocation, t1, t2, jmapRequestBuilder, queryEmailMethod;
var $async$deleteEmailsBaseOnQuery$4$filter$sort = A._wrapJsFunctionForAsync(function($async$errorCode, $async$result) {
if ($async$errorCode === 1)
return A._asyncRethrow($async$result, $async$completer);
Expand Down Expand Up @@ -398198,14 +398199,15 @@
destroyedCount = destroyed == null ? null : J.get$length$asx(destroyed.__internal$_iterable);
if (destroyedCount == null)
destroyedCount = 0;
A.log("ThreadAPI::deleteEmailsBaseOnQuery(): QUERIED_COUNT = " + queriedCount + ", DESTROYED_COUNT = " + destroyedCount, B.Level_3);
if (destroyedCount < queriedCount) {
t1 = destroyedCount + $async$self._countingNotFoundInNotDestroy$1(setEmailResponse);
$async$returnValue = new A.EmptyMailboxResponse(t1 >= queriedCount, t1);
notFoundErrorCounter = $async$self._countingNotFoundInNotDestroy$1(setEmailResponse);
$async$returnValue = new A.EmptyMailboxResponse(destroyedCount + notFoundErrorCounter >= queriedCount, destroyedCount, notFoundErrorCounter);
// goto return
$async$goto = 1;
break;
}
$async$returnValue = new A.EmptyMailboxResponse(true, destroyedCount);
$async$returnValue = new A.EmptyMailboxResponse(true, destroyedCount, 0);
// goto return
$async$goto = 1;
break;
Expand Down Expand Up @@ -398312,7 +398314,7 @@
// returning from await.
emptyMailboxResponse = $async$result;
batchResult = !batchResult ? batchResult : emptyMailboxResponse.isSuccess;
hasEmails = emptyMailboxResponse.deletedCount > 0;
hasEmails = emptyMailboxResponse.destroyedCount > 0;
// goto for condition
$async$goto = 7;
break;
Expand Down Expand Up @@ -399093,7 +399095,7 @@
A._EmailsResponse_Object_EquatableMixin.prototype = {};
A.EmptyMailboxResponse.prototype = {
get$props() {
return [this.isSuccess, this.deletedCount];
return [this.isSuccess, this.destroyedCount, this.notFoundCount];
}
};
A._EmptyMailboxResponse_Object_EquatableMixin.prototype = {};
Expand Down

0 comments on commit a38c1bf

Please sign in to comment.