Markus Probst

Results 24 issues of Markus Probst

As you can see here , HttpsConnector implements ``` From for HttpsConnector where C: Into ``` which just sets the server_name_resolver to `DefaultServerNameResolver`. This adds ``` impl From for HttpsConnector...

This adds the ``` with_server_name_resolver(mut self, server_name_resolver: Arc) ``` to ClientBuilder (if rustls is used). It allows to override, which name is used for tls instead of using the one...

This fixes apksig not being present in the revanced manager, resulting in an ClassNotFoundException. For context, read the comments here: https://github.com/ReVanced/revanced-patches/pull/5158 Depends on https://github.com/ReVanced/revanced-patches-gradle-plugin/pull/6 Original pr: https://github.com/ReVanced/revanced-patches/pull/5353.

Here it converts the javascript "Date" object into the untis format as string: https://github.com/SchoolUtils/WebUntis/blob/51576aaeda7af7ec47c818ab22a0e434b6fcb148/src/base.ts#L803-L814 "Date" in javascript uses the local time, not utc. Afaik, I haven't seen a timezone being...