mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-03-03 19:06:47 +00:00
fix for scanning himself
This commit is contained in:
parent
54f049496d
commit
618d4a3fb3
1 changed files with 6 additions and 4 deletions
|
|
@ -220,10 +220,12 @@ class MainCameraController {
|
|||
}
|
||||
}
|
||||
} else {
|
||||
if (scannedNewProfiles[profile.userId.toInt()] == null) {
|
||||
scannedNewProfiles[profile.userId.toInt()] = ScannedNewProfile(
|
||||
profile: profile,
|
||||
);
|
||||
if (profile.username != gUser.username) {
|
||||
if (scannedNewProfiles[profile.userId.toInt()] == null) {
|
||||
scannedNewProfiles[profile.userId.toInt()] = ScannedNewProfile(
|
||||
profile: profile,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue