mirror of
https://github.com/coracle-social/flotilla.git
synced 2025-12-10 02:47:06 +00:00
Fix connection meta access
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
const confirm = () => goto(makeSpacePath(url), {replaceState: true})
|
||||
|
||||
const next = () => {
|
||||
if (!error && ctx.net.pool.get(url).meta.lastAuth === 0) {
|
||||
if (!error && ctx.net.pool.get(url).stats.lastAuth === 0) {
|
||||
pushModal(Confirm, {
|
||||
confirm,
|
||||
message: `This space does not appear to limit who can post to it. This can result
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
|
||||
const connection = ctx.net.pool.get(url)
|
||||
|
||||
if (connection.meta.lastAuth === 0) {
|
||||
if (connection.stats.lastAuth === 0) {
|
||||
pushModal(Confirm, {
|
||||
confirm: () => confirm(url),
|
||||
message: `This space does not appear to limit who can post to it. This can result
|
||||
|
||||
Reference in New Issue
Block a user