[mob][photos] Refresh people section on people changed event

This commit is contained in:
laurenspriem 2024-05-17 17:33:31 +05:30
parent cd9db4d10f
commit 7a37eca4e6

View file

@ -293,6 +293,8 @@ extension SectionTypeExtensions on SectionType {
switch (this) {
case SectionType.location:
return [Bus.instance.on<LocationTagUpdatedEvent>()];
case SectionType.face:
return [Bus.instance.on<PeopleChangedEvent>()];
default:
return [];
}