From 411685d7de38cb43baa9ef14f02958a466156971 Mon Sep 17 00:00:00 2001 From: Gregor Reitzenstein Date: Sat, 28 Aug 2021 20:29:01 +0200 Subject: [PATCH] Tokens may contain NULL. They must be :Data, not :Text --- user.capnp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user.capnp b/user.capnp index 8c89921..1a951ec 100644 --- a/user.capnp +++ b/user.capnp @@ -109,7 +109,7 @@ struct User # this frequently will force the server to store large amounts of data. # Trying to bind a new key to an existing URL will fail. - unbind @3 ( token :Text ) -> (); + unbind @3 ( token :Data ) -> (); # Unbind the key associated with the given token. This will fail all future attempts to use # the card with the associated key. }