diff --git a/android/app/build.gradle b/android/app/build.gradle
index a29d43a..cd0ac1d 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -27,8 +27,8 @@ android {
applicationId "com.paarrot.app"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 1777176952
- versionName "2026-04-26.041552.151"
+ versionCode 1778632712
+ versionName "2026-05-13.003832.344"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
diff --git a/cinny b/cinny
index 7ef9939..b2fd65c 160000
--- a/cinny
+++ b/cinny
@@ -1 +1 @@
-Subproject commit 7ef9939d8aab11973397c9e18b2df111e93e42f8
+Subproject commit b2fd65c8cb95270ef5b3e4ba1fbb6b6a13436814
diff --git a/overlay/src/app/features/ShareRoomPicker.tsx b/overlay/src/app/features/ShareRoomPicker.tsx
index 269dd1f..b2a7a92 100644
--- a/overlay/src/app/features/ShareRoomPicker.tsx
+++ b/overlay/src/app/features/ShareRoomPicker.tsx
@@ -127,7 +127,8 @@ export function ShareRoomPicker({ share, onPick, onDismiss }: ShareRoomPickerPro
const fileCount = share.files.length;
return (
- }>
+ <>
+
+
- {confirmRoomId && (() => {
- const room = getRoom(confirmRoomId);
- const roomName = room?.name ?? confirmRoomId;
- const isDm = mDirects.has(confirmRoomId);
- return (
-
+ {confirmRoomId && (() => {
+ const room = getRoom(confirmRoomId);
+ const roomName = room?.name ?? confirmRoomId;
+ const isDm = mDirects.has(confirmRoomId);
+ return (
+ }>
+
-
-
-
+
+
+
Share to {isDm ? 'Person' : 'Room'}?
Send to {roomName}?
@@ -303,8 +308,9 @@ export function ShareRoomPicker({ share, onPick, onDismiss }: ShareRoomPickerPro
- );
- })()}
-
+
+ );
+ })()}
+ >
);
}