Skip to content
Snippets Groups Projects
Commit b14efc6d authored by Jake Taylor's avatar Jake Taylor
Browse files

fix

parent d6781482
No related branches found
No related tags found
4 merge requests!510Release,!419rewrote the health tracker to both consider if there are waiting rounds and...,!371[Channel RSAtoPrivate] Implement Reverse Asymmetric in Client/Broadcast,!340Project/channels
......@@ -49,7 +49,7 @@ func (m *manager) storeUnsafe() error {
Data: data,
}
return m.kv.Set(joinedChannelsKey, joinedChannelsVersion, obj)
return m.kv.Set(joinedChannelsKey, obj)
}
// loadChannels loads all currently joined channels from disk and registers them
......@@ -203,8 +203,7 @@ func (jc *joinedChannel) Store(kv *versioned.KV) error {
Data: data,
}
return kv.Set(makeJoinedChannelKey(jc.broadcast.Get().ReceptionID),
joinedChannelVersion, obj)
return kv.Set(makeJoinedChannelKey(jc.broadcast.Get().ReceptionID), obj)
}
// loadJoinedChannel loads a given channel from ekv storage.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment