mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 00:32:35 +01:00
ircd:Ⓜ️🆔 Fix event::version gauge.
This commit is contained in:
parent
c39aad4d3f
commit
735d1980ff
1 changed files with 2 additions and 3 deletions
|
@ -722,9 +722,8 @@ const
|
|||
parser.event_id_v3 >> eoi
|
||||
};
|
||||
|
||||
const auto &local(this->local());
|
||||
auto *start(std::begin(local));
|
||||
auto *const stop(std::end(local));
|
||||
auto *start(std::begin(*this));
|
||||
auto *const stop(std::end(*this));
|
||||
|
||||
return
|
||||
qi::parse(start, stop, is_v4)? "4":
|
||||
|
|
Loading…
Reference in a new issue