diff --git a/apps/identity.json b/apps/identity.json index af59f88f..4f2a7b1d 100644 --- a/apps/identity.json +++ b/apps/identity.json @@ -1,5 +1,5 @@ { "type": "tildefriends-app", "emoji": "🪪", - "previous": "&de7q4A59auHP/34bXgeNH05JZoxsGr5TjwXPvehWH30=.sha256" + "previous": "&zxsmzdLKsiG/WZt/Gw7JOxepgypoktNNbIyWiyFiJVc=.sha256" } diff --git a/apps/identity/app.js b/apps/identity/app.js index 274f9228..6b0eedf7 100644 --- a/apps/identity/app.js +++ b/apps/identity/app.js @@ -18,6 +18,7 @@ tfrpc.register(async function reload() { async function main() { let ids = await ssb.getIdentities(); + let server_id = await ssb.getServerIdentity(); await app.setDocument( ` @@ -123,7 +124,7 @@ async function main() { ) => `
  • - ${id} + ${id}${id == server_id ? '
    🖥 local server
    ' : ''}
  • ` ) .join('\n') +