0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 01:59:33 +02:00

modules/client/user/rooms: Always return 200 for DELETE tags method.

This commit is contained in:
Jason Volk 2020-07-25 03:08:50 -07:00
parent f5db759fc0
commit 285b69f049

View file

@ -264,7 +264,7 @@ delete__tags(client &client,
return m::resource::response
{
client, deleted? http::OK : http::NOT_FOUND
client, http::OK
};
}