|
@property |
|
def http(self) -> str: |
|
"""Convert instance to HTTP URI.""" |
|
return str(self) |
Right now it just returns the str representation, which seems to always return a string prefixed by at://
I think this property is a bit misleading, unless I'm totally missing something. I'd expect the return of this to be an http(s) url using the DidDocument resolver to get the proper PID base.
Let me know if this is meant for something else
atproto/packages/atproto_core/uri/uri.py
Lines 81 to 84 in 5bce23e
Right now it just returns the str representation, which seems to always return a string prefixed by
at://I think this property is a bit misleading, unless I'm totally missing something. I'd expect the return of this to be an http(s) url using the DidDocument resolver to get the proper PID base.
Let me know if this is meant for something else