Skip to content

Commit 2c4a5f8

Browse files
authored
Merge pull request #9 from yoshimin/master
Don't throw error even if current token is null
2 parents 057f263 + 25697ff commit 2c4a5f8

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

android/src/main/kotlin/com/linecorp/flutter_line_sdk/LineSdkWrapper.kt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -182,11 +182,7 @@ class LineSdkWrapper(
182182
)
183183
)
184184
} else {
185-
result.error(
186-
lineApiResponse.responseCode.name,
187-
lineApiResponse.errorData.message,
188-
null
189-
)
185+
result.success(null)
190186
}
191187
}
192188
}

0 commit comments

Comments
 (0)