diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/services/ce/ApplicationServiceCEImpl.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/services/ce/ApplicationServiceCEImpl.java index 2f354f4882..887f4c408b 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/services/ce/ApplicationServiceCEImpl.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/services/ce/ApplicationServiceCEImpl.java @@ -786,7 +786,7 @@ public class ApplicationServiceCEImpl extends BaseService prevAssetIdMono = Mono.just(rootAppLogoAssetId); - final Mono uploaderMono = assetService.upload(List.of(filePart), MAX_LOGO_SIZE_KB, true); + final Mono uploaderMono = assetService.upload(List.of(filePart), MAX_LOGO_SIZE_KB, false); return Mono.zip(prevAssetIdMono, uploaderMono) .flatMap(tuple -> {