Skip to content
This repository was archived by the owner on Feb 21, 2020. It is now read-only.

Commit 02c93aa

Browse files
authored
Merge pull request #155 from BoostIO/fix_dropbox_connect
Fix dropbox connect
2 parents 5e37329 + 16cd8af commit 02c93aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/views/DropboxNoteList.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ export default class DropboxNoteList extends Component {
304304
.then((response) => {
305305
AsyncStorage.setItem(DROPBOX_ACCESS_TOKEN, response.access_token)
306306
.then((value) => {
307-
this.getDropboxNoteData(value)
307+
this.getToken()
308308
})
309309
.catch((e) => {
310310
Alert.alert(
@@ -320,7 +320,7 @@ export default class DropboxNoteList extends Component {
320320
.catch((e) => {
321321
Alert.alert(
322322
'Cannot authorize',
323-
'Please input a valid token',
323+
'Please restart this app and input a valid token',
324324
[
325325
{ text: 'OK' }
326326
],

0 commit comments

Comments
 (0)