Use phone icon istead of PSTN

Stephen Paul Weber created

No one know what a PSTN is

Change summary

src/main/java/eu/siacs/conversations/ui/EnterJidDialog.java | 1 +
1 file changed, 1 insertion(+)

Detailed changes

src/main/java/eu/siacs/conversations/ui/EnterJidDialog.java 🔗

@@ -498,6 +498,7 @@ public class EnterJidDialog extends DialogFragment implements OnBackendConnected
 
         public String getLabel(Contact gateway) {
             String type = getType(gateway);
+            if ("pstn".equals(type)) return "📞";
             if (type != null) return type;
 
             return gateway.getDisplayName();