|
@@ -966,7 +966,10 @@ class DispatchActivity : BaseNoActionBarActivity(), BottomNavigationBar.OnTabSel
|
|
|
} else {
|
|
|
val childId = intent.getStringExtra("cloud_album_child")
|
|
|
if (childId != null) {
|
|
|
- PhotoViewModel.showCloudAlbumAuthorizeDialog(this, DataManager.instance.getChildInfoById(childId)!!)
|
|
|
+ Handler(Looper.getMainLooper()).postDelayed({
|
|
|
+ DataManager.instance.getChildInfoById(childId)
|
|
|
+ ?.let { PhotoViewModel.showCloudAlbumAuthorizeDialog(this, it) }
|
|
|
+ }, 1000)
|
|
|
}
|
|
|
|
|
|
val msgType = intent.getIntExtra("messageType", 0)
|