tangled
alpha
login
or
join now
mackuba.eu
/
lycan
35
fork
atom
Don't forget to lycansubscribe
35
fork
atom
overview
issues
1
pulls
pipelines
fixed deleting users from @active_users
mackuba.eu
5 months ago
2e25a283
cafcb5e2
+1
-1
1 changed file
expand all
collapse all
unified
split
app
firehose_client.rb
+1
-1
app/firehose_client.rb
···
159
159
if msg.status == :deleted
160
160
if user = User.find_by(did: msg.repo)
161
161
user.destroy
162
162
-
@active_users.delete_if { |u| u.id == user.id }
162
162
+
@active_users.delete_if { |k, u| u.id == user.id }
163
163
end
164
164
end
165
165
end