mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 07:23:53 +01:00
ircd::db: Don't override uuid gen.
This commit is contained in:
parent
9c64ae50e4
commit
795d62b1c7
1 changed files with 4 additions and 2 deletions
|
@ -4323,7 +4323,8 @@ const noexcept try
|
|||
id, max_size
|
||||
};
|
||||
|
||||
return size(fs::uuid(fd, buf));
|
||||
//return size(fs::uuid(fd, buf));
|
||||
return 0;
|
||||
}
|
||||
catch(const std::exception &e)
|
||||
{
|
||||
|
@ -5040,7 +5041,8 @@ const noexcept try
|
|||
id, max_size
|
||||
};
|
||||
|
||||
return size(fs::uuid(fd, buf));
|
||||
//return size(fs::uuid(fd, buf));
|
||||
return 0;
|
||||
}
|
||||
catch(const std::exception &e)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue