Skip to content

Commit

Permalink
Fix showing information sheet picture when editing the sheet (#882)
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsreichardt authored Sep 4, 2023
1 parent 4eeddeb commit c775cf6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/lib/blackboard/blocs/blackboard_dialog_bloc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ class BlackboardDialogBloc extends BlocBase with BlackboardValidators {
if (blackboardItem.text != null) {
changeText(blackboardItem.text!);
}
if (blackboardItem.pictureURL != null) {
changePictureURL(blackboardItem.pictureURL!);
}
changeSendNotification(false);
final c = Course.create().copyWith(
subject: blackboardItem.subject,
Expand Down

0 comments on commit c775cf6

Please sign in to comment.