fix crash when AccountMediaFragment was recreated
This commit is contained in:
parent
59bcb6f0bf
commit
f35ff105e9
1 changed files with 3 additions and 4 deletions
|
@ -120,10 +120,9 @@ class AccountMediaFragment : BaseFragment() {
|
|||
|
||||
}
|
||||
|
||||
override fun onAttach(context: Context) {
|
||||
super.onAttach(context)
|
||||
// we should get rid of this
|
||||
api = (context as BaseActivity).mastodonApi
|
||||
override fun onActivityCreated(savedInstanceState: Bundle?) {
|
||||
super.onActivityCreated(savedInstanceState)
|
||||
api = (activity as BaseActivity).mastodonApi
|
||||
}
|
||||
|
||||
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
|
||||
|
|
Loading…
Reference in a new issue