diff options
-rw-r--r-- | system/admin/handlers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/admin/handlers.go b/system/admin/handlers.go index 3960eed..9f0b81e 100644 --- a/system/admin/handlers.go +++ b/system/admin/handlers.go @@ -563,7 +563,7 @@ func postsHandler(res http.ResponseWriter, req *http.Request) { } var hasExt bool - ext, ok := pt.(api.Externalable) + _, ok = pt.(api.Externalable) if ok { hasExt = true } |