mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-26 13:31:02 +00:00
Local instance ID is 1, not 0
This prevented local users from being removed before broadcasting an activity. Fixes #113
This commit is contained in:
parent
dbdc9f317e
commit
d60289aac8
1 changed files with 1 additions and 1 deletions
|
@ -567,7 +567,7 @@ impl WithInbox for User {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn is_local(&self) -> bool {
|
fn is_local(&self) -> bool {
|
||||||
self.instance_id == 0
|
self.instance_id == 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue