mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-08 17:11:14 +00:00
fix: Adapt domain iteration on recovery to new provider interface
This commit is contained in:
parent
ff9c96a114
commit
a45ac7e344
|
@ -210,7 +210,9 @@ class ServerInstallationRepository {
|
|||
return false;
|
||||
}
|
||||
|
||||
return domainResult.data.contains(domain);
|
||||
return domainResult.data.any(
|
||||
(final serverDomain) => serverDomain.domainName == domain,
|
||||
);
|
||||
}
|
||||
|
||||
Future<void> createDkimRecord(final ServerDomain domain) async {
|
||||
|
|
Loading…
Reference in a new issue