Я пытаюсь выполнить условие в Thymeleaf:
<img th:src="${{chat.sender.id} == ${#authentication.principal.user.id} ?: '/img/' + ${chat.sender.userProfile.avatar} : '/img/' + ${chat.receiver.userProfile.avatar} }"/>
Но я получаю сообщение об ошибке:
Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "{chat.sender.id} == ${#authentication.principal.user.id} ?: '/img/' + ${chat.sender.userProfile.avatar} : '/img/' + ${chat.receiver.userProfile.avatar} " (template: "chat/friends-chat" - line 28, col 18)
Пожалуйста, объясните мне, что я делаю неправильно.