Skip to content
Snippets Groups Projects
Commit 61724a47 authored by cyberta's avatar cyberta Committed by kwadronaut
Browse files

fix hard-coding Riseup as provider name for domain black.riseup.net

parent a823812d
No related branches found
No related tags found
1 merge request!326fix hard-coding Riseup as provider name for domain black.riseup.net
Pipeline #260347 passed with warnings
......@@ -131,7 +131,7 @@ public class ProviderSelectionViewModel extends ViewModel {
public String getProviderName(int pos) {
String domain = getProvider(pos).getDomain();
if ("riseup.net".equals(domain)) {
if ("riseup.net".equals(domain) || "black.riseup.net".equals(domain)) {
return "Riseup";
}
if ("calyx.net".equals(domain)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment