The builder method for fanr::Repo doesn't recognise the https scheme.
https
static Repo makeForUri(Uri uri, Str? username := null, Str? password := null) { if (uri.scheme == null) return FileRepo(uri) if (uri.scheme == "file") return FileRepo(uri) if (uri.scheme == "http") return WebRepo(uri, username, password) throw Err("No repo available for URI scheme: $uri") }
Is there any reason why it wouldn't work over https?
Can't test it, but I pushed a fix
Login or Signup to reply.
SlimerDude Sat 6 Feb 2016
The builder method for fanr::Repo doesn't recognise the
https
scheme.Is there any reason why it wouldn't work over
https
?brian Sat 6 Feb 2016
Can't test it, but I pushed a fix