File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 33 "name" : " Hoarder App" ,
44 "slug" : " hoarder" ,
55 "scheme" : " hoarder" ,
6- "version" : " 1.6.8 " ,
6+ "version" : " 1.6.9 " ,
77 "orientation" : " portrait" ,
88 "icon" : " ./assets/icon.png" ,
99 "userInterfaceStyle" : " automatic" ,
2929 "NSAllowsArbitraryLoads" : true
3030 }
3131 },
32- "buildNumber" : " 21 "
32+ "buildNumber" : " 22 "
3333 },
3434 "android" : {
3535 "adaptiveIcon" : {
4747 }
4848 },
4949 "package" : " app.hoarder.hoardermobile" ,
50- "versionCode" : 21
50+ "versionCode" : 22
5151 },
5252 "plugins" : [
5353 " ./plugins/trust-local-certs.js" ,
Original file line number Diff line number Diff line change @@ -42,7 +42,9 @@ function SaveBookmark({ setMode }: { setMode: (mode: Mode) => void }) {
4242 if ( isLoading ) {
4343 return ;
4444 }
45- if ( ! isPending && shareIntent ?. text ) {
45+ if ( ! isPending && shareIntent . webUrl ) {
46+ mutate ( { type : BookmarkTypes . LINK , url : shareIntent . webUrl } ) ;
47+ } else if ( ! isPending && shareIntent ?. text ) {
4648 const val = z . string ( ) . url ( ) ;
4749 if ( val . safeParse ( shareIntent . text ) . success ) {
4850 // This is a URL, else treated as text
You can’t perform that action at this time.
0 commit comments