Skip to content

Commit

Permalink
Merge pull request #826 from kasenvr/fix/metadata-exp-port
Browse files Browse the repository at this point in the history
Append 'Vircadia' to the environment variable for the metadata exporter port
  • Loading branch information
two-one-five authored Oct 25, 2020
2 parents 22aa9f2 + 413c21f commit f1194ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/networking/src/DomainHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ const quint16 DOMAIN_SERVER_EXPORTER_PORT =

const quint16 DOMAIN_SERVER_METADATA_EXPORTER_PORT =
QProcessEnvironment::systemEnvironment()
.contains("DOMAIN_SERVER_METADATA_EXPORTER_PORT")
.contains("VIRCADIA_DOMAIN_SERVER_METADATA_EXPORTER_PORT")
? QProcessEnvironment::systemEnvironment()
.value("DOMAIN_SERVER_METADATA_EXPORTER_PORT")
.value("VIRCADIA_DOMAIN_SERVER_METADATA_EXPORTER_PORT")
.toUInt()
: 9704;

Expand Down

0 comments on commit f1194ee

Please sign in to comment.