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