1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-12 11:21:52 +00:00

Fix version query bug.

This commit is contained in:
winlin 2021-08-15 21:33:08 +08:00
parent 2431e0b140
commit 9eadebdde7
2 changed files with 3 additions and 1 deletions

View file

@ -44,6 +44,8 @@ extern bool _srs_in_docker;
void srs_build_features(stringstream& ss)
{
ss << "&os=linux";
ss << "&docker=" << _srs_in_docker
<< "&packager=" << SRS_AUTO_PACKAGER;
}

View file

@ -24,6 +24,6 @@
#ifndef SRS_CORE_VERSION3_HPP
#define SRS_CORE_VERSION3_HPP
#define SRS_VERSION3_REVISION 168
#define SRS_VERSION3_REVISION 169
#endif