Check for null before animation

Signed-off-by: TobiPeterG <github.threefold020@passmail.net>
This commit is contained in:
TobiPeterG 2024-12-06 21:11:24 +01:00 committed by Viktor Havaka
parent 7e41a4ccb4
commit a100a8ac50

View file

@ -283,6 +283,9 @@ public class PlacePageController extends Fragment implements
*/
private void animatePeekHeight(int peekHeight)
{
if (mCurrentWindowInsets == null) {
return;
}
final int bottomInsets = mCurrentWindowInsets.getInsets(WindowInsetsCompat.Type.systemBars()).bottom;
// Make sure to start from the current height of the place page
final int parentHeight = ((View) mPlacePage.getParent()).getHeight();