mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 07:48:40 +00:00
fix for scanning himself
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
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 {
|
} else {
|
||||||
if (scannedNewProfiles[profile.userId.toInt()] == null) {
|
if (profile.username != gUser.username) {
|
||||||
scannedNewProfiles[profile.userId.toInt()] = ScannedNewProfile(
|
if (scannedNewProfiles[profile.userId.toInt()] == null) {
|
||||||
profile: profile,
|
scannedNewProfiles[profile.userId.toInt()] = ScannedNewProfile(
|
||||||
);
|
profile: profile,
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue