Skip to content
4 changes: 2 additions & 2 deletions unitylibs/core/workflow/workflow-acrobat/action-binder.js
Original file line number Diff line number Diff line change
Expand Up @@ -707,8 +707,8 @@ export default class ActionBinder {
document.cookie = `dc_fl=1;domain=.adobe.com;path=/;expires=${new Date(Date.now() + 30 * 1000).toUTCString()}`;
}
if (this.multiFileFailure && !this.redirectUrl.includes('feedback=') && this.redirectUrl.includes('#folder')) {
window.location.href = `${baseUrl}?feedback=${this.multiFileFailure}&${queryString}`;
} else window.location.href = `${baseUrl}?${this.redirectWithoutUpload === false ? `UTS_Uploaded=${this.uploadTimestamp}&` : ''}${queryString}`;
window.location.href = `${baseUrl}?feedback=${this.multiFileFailure}&redirectTime=${Date.now()}&${queryString}`;
} else window.location.href = `${baseUrl}?${this.redirectWithoutUpload === false ? `UTS_Uploaded=${this.uploadTimestamp}&` : ''}redirectTime=${Date.now()}&${queryString}`;
} catch (e) {
await this.transitionScreen.showSplashScreen();
await this.dispatchErrorToast('error_generic', 500, `Exception thrown when redirecting to product; ${e.message}`, false, e.showError, {
Expand Down
Loading