diff --git a/apps/ssb.json b/apps/ssb.json index 5df0743d..6148c1ef 100644 --- a/apps/ssb.json +++ b/apps/ssb.json @@ -1,5 +1,5 @@ { "type": "tildefriends-app", "emoji": "🐌", - "previous": "&vEaOZjrNb0u9rhNqrQ8eU9TlOFlo4HsgW6hbI7VdIT0=.sha256" + "previous": "&sqnidhPsKb45FDw4m0/ZeDQgX3qxqw9MReaVP11Xk2M=.sha256" } diff --git a/apps/ssb/tf-tab-connections.js b/apps/ssb/tf-tab-connections.js index 4fad1ff9..468f687c 100644 --- a/apps/ssb/tf-tab-connections.js +++ b/apps/ssb/tf-tab-connections.js @@ -10,6 +10,7 @@ class TfTabConnectionsElement extends LitElement { connections: {type: Array}, stored_connections: {type: Array}, users: {type: Object}, + server_identity: {type: String}, }; } @@ -29,6 +30,9 @@ class TfTabConnectionsElement extends LitElement { tfrpc.rpc.getStoredConnections().then(function (connections) { self.stored_connections = connections || []; }); + tfrpc.rpc.getServerIdentity().then(function (identity) { + self.server_identity = identity; + }); } render_connection_summary(connection) { @@ -179,6 +183,7 @@ class TfTabConnectionsElement extends LitElement { (x) => html`
  • + ${x == this.server_identity ? html`- 🖥local server` : undefined}
  • ` )} diff --git a/deps/libbacktrace b/deps/libbacktrace index 11427f31..7ead8c1e 160000 --- a/deps/libbacktrace +++ b/deps/libbacktrace @@ -1 +1 @@ -Subproject commit 11427f31a64b11583fec94b4c2a265c7dafb1ab3 +Subproject commit 7ead8c1ea2f4aeafe9c5b9ef8a9461a9ba781aa8