aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/app.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/app/app.go')
-rw-r--r--internal/app/app.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/app/app.go b/internal/app/app.go
index 9dd082b9..eb463924 100644
--- a/internal/app/app.go
+++ b/internal/app/app.go
@@ -47,10 +47,10 @@ func (a *app) String() string {
}
if a.appSeal != nil {
- if a.appSeal.sys.user.uid == nil {
+ if a.appSeal.user.uid == nil {
return fmt.Sprintf("(sealed app %s with invalid uid)", a.id)
}
- return fmt.Sprintf("(sealed app %s as uid %s)", a.id, a.appSeal.sys.user.uid)
+ return fmt.Sprintf("(sealed app %s as uid %s)", a.id, a.appSeal.user.uid)
}
return fmt.Sprintf("(unsealed app %s)", a.id)