use https for deep links

This commit is contained in:
Eric House 2022-11-02 08:18:47 -07:00
parent dbe7ab5ae1
commit 6f5ae560e1

View file

@ -628,7 +628,7 @@ public class NetLaunchInfo implements Serializable {
String host = LocUtils.getString( context, R.string.invite_host );
host = NetUtils.forceHost( host );
Uri.Builder ub = new Uri.Builder()
.scheme( "http" ) // PENDING: should be https soon
.scheme( "https" )
.path( String.format( "//%s%s", host,
LocUtils.getString(context,
R.string.invite_prefix) ) );