diff options
| -rw-r--r-- | mastodon/accounts.go | 1 | ||||
| -rw-r--r-- | templates/user.tmpl | 1 | 
2 files changed, 2 insertions, 0 deletions
| diff --git a/mastodon/accounts.go b/mastodon/accounts.go index df0a3b7..dbd0a48 100644 --- a/mastodon/accounts.go +++ b/mastodon/accounts.go @@ -189,6 +189,7 @@ type Relationship struct {  	Following           bool   `json:"following"`  	FollowedBy          bool   `json:"followed_by"`  	Blocking            bool   `json:"blocking"` +	BlockedBy           bool   `json:"blocked_by"`  	Muting              bool   `json:"muting"`  	MutingNotifications bool   `json:"muting_notifications"`  	Subscribing         bool   `json:"subscribing"` diff --git a/templates/user.tmpl b/templates/user.tmpl index dccce7c..5342efe 100644 --- a/templates/user.tmpl +++ b/templates/user.tmpl @@ -20,6 +20,7 @@  		{{if not .IsCurrent}}  		<div>  			<span> {{if .User.Pleroma.Relationship.FollowedBy}} follows you - {{end}} </span>   +			{{if .User.Pleroma.Relationship.BlockedBy}} blocks you - {{end}}  			{{if .User.Pleroma.Relationship.Following}}   			<form class="d-inline" action="/unfollow/{{.User.ID}}" method="post">  				<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}"> | 
