TF-2305 Fixed getUploadUri and getDownloadUri not working with Cyrus
This commit is contained in:
committed by
Dat H. Pham
parent
c3887b7705
commit
327af38fb0
+8
-1
@@ -2755,7 +2755,14 @@ class MailboxDashBoardController extends ReloadableController
|
||||
dispatchAction(SelectionAllEmailAction());
|
||||
}
|
||||
|
||||
String get baseDownloadUrl => sessionCurrent?.getDownloadUrl(jmapUrl: dynamicUrlInterceptors.jmapUrl) ?? '';
|
||||
String get baseDownloadUrl {
|
||||
try {
|
||||
return sessionCurrent?.getDownloadUrl(jmapUrl: dynamicUrlInterceptors.jmapUrl) ?? '';
|
||||
} catch (e) {
|
||||
logError('MailboxDashboardController::baseDownloadUrl(): $e');
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
void redirectToInboxAction() {
|
||||
log('MailboxDashBoardController::redirectToInboxAction:');
|
||||
|
||||
Reference in New Issue
Block a user