forked from Nexus/nexus
Now this feature is stable, we should use it. I might have missed some usecases, but these can be added in future commits.
4 lines
152 B
Dart
4 lines
152 B
Dart
extension MxcToHttps on Uri {
|
|
Uri mxcToHttps(String homeserver) =>
|
|
.parse(homeserver).resolve("_matrix/client/v1/media/download/$host$path");
|
|
}
|