Skip to content
Next
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Mobile
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
233
Merge Requests
10
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Minds
Minds Mobile
Compare Revisions
26153003ffb4870b8520bded566485377433e605...f67dc5d7bf3aa495dd3f02951bfc2b6928e79ffc
Source
f67dc5d7bf3aa495dd3f02951bfc2b6928e79ffc
...
Target
26153003ffb4870b8520bded566485377433e605
Compare
Commits (2)
(fix) error when the app is focused again on iOS
· 60949ec7
Martin Santangelo
authored
5 hours ago
60949ec7
Merge branch 'fix/ios-focus-shared-intent' into release/3.11.0
· f67dc5d7
Martin Santangelo
authored
5 hours ago
f67dc5d7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/common/services/receive-share.service.js
View file @
f67dc5d7
...
...
@@ -10,6 +10,10 @@ class ReceiveShareService {
* Handle received data
*/
handle
()
{
if
(
!
RNFileShareIntent
)
{
return
;
}
RNFileShareIntent
.
getFilepath
(
async
(
text
,
type
)
=>
{
RNFileShareIntent
.
clearFilePath
();
if
(
text
&&
type
)
{
...
...
This diff is collapsed.