Skip to content
Snippets Groups Projects
Commit a1958516 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

FIX: use correct string for cache key

parent 3c98d501
No related branches found
No related tags found
1 merge request!65F permission checks
Pipeline #25941 failed
......@@ -1007,7 +1007,7 @@ public class Query implements QueryInterface, ToElementable, TransactionInterfac
String getCacheKey() {
final StringBuilder sb = new StringBuilder();
if (this.user != null) {
sb.append(this.user.toString());
sb.append(this.user.getPrincipal().toString());
}
if (this.versioned) {
sb.append("versioned");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment