Skip to content

Commit

Permalink
Fix empty gray bar
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelm committed Nov 10, 2023
1 parent 186b59c commit 87faa18
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,7 @@ class MainActivity : AppCompatActivity(), ReloadableActivity, ZXingScannerView.R
if (result.attendee_name != null && !conf.hideNames) {
view_data.attendeeName.set(result.attendee_name)
} else {
view_data.attendeeName.set("")
view_data.attendeeName.set(null)
}
if (result.orderCodeAndPositionId() != null) {
view_data.orderCodeAndPositionId.set(result.orderCodeAndPositionId())
Expand Down

0 comments on commit 87faa18

Please sign in to comment.