mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-21 05:08:03 +01:00
Revert "Turn off alphanumeric sender ID for all countries."
This reverts commit 3bf0188e7f.
This commit is contained in:
committed by
Jon Chambers
parent
a6fd1aa06c
commit
e50a1c0646
@@ -37,12 +37,11 @@ class SenderIdSupplier {
|
||||
}
|
||||
|
||||
Optional<String> get(@NotNull String destination) {
|
||||
/* final String countryCode = Util.getCountryCode(destination);
|
||||
final String countryCode = Util.getCountryCode(destination);
|
||||
if (countryCodesWithoutSenderId.contains(countryCode)) {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
return Optional.ofNullable(StringUtils.stripToNull(countrySpecificSenderIds.getOrDefault(countryCode, defaultSenderId))); */
|
||||
return Optional.empty();
|
||||
return Optional.ofNullable(StringUtils.stripToNull(countrySpecificSenderIds.getOrDefault(countryCode, defaultSenderId)));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user