File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -895,8 +895,7 @@ class HttpAPIServer {
895
895
final String ? domain = node.config['http' ]? ['api' ]? ['domain' ];
896
896
897
897
if (domain != null ) {
898
- if (uri.host == 'localhost' ) {
899
- } else if (uri.host == domain) {
898
+ if (uri.host == domain) {
900
899
if (request.uri.path == '/s5/p2p' ) {
901
900
final socket = await WebSocketTransformer .upgrade (request);
902
901
@@ -916,6 +915,8 @@ class HttpAPIServer {
916
915
} else if (uri.host == 'docs.$domain ' ) {
917
916
cid = CID .decode ('zrjD7xwmgP8U6hquPUtSRcZP1J1LvksSwTq4CPZ2ck96FHu' );
918
917
checkAuth = false ;
918
+ } else if ('.${uri .host }' .endsWith ('.$domain ' )) {
919
+ cid = CID .decode (uri.host.split ('.' ).first);
919
920
} else if (! ('.${uri .host }' ).endsWith ('.$domain ' )) {
920
921
final cidStr = await node.resolveName (uri.host);
921
922
cid = CID .decode (cidStr);
You can’t perform that action at this time.
0 commit comments