Fix/break/change things
This commit is contained in:
parent
e64df67ec3
commit
28c6527544
@ -52,10 +52,6 @@ func (config *Config) NewSession(mxid string) *Session {
|
||||
}
|
||||
}
|
||||
|
||||
func (s *Session) SetInitialSyncDone() {
|
||||
s.InitialSyncDone = true
|
||||
}
|
||||
|
||||
func (s *Session) GetUserID() string {
|
||||
return s.UserID
|
||||
}
|
||||
|
@ -175,6 +175,10 @@ func (c *Container) OnLogin() {
|
||||
c.syncer.OnEventType("m.typing", c.HandleTyping)
|
||||
c.syncer.OnEventType("m.push_rules", c.HandlePushRules)
|
||||
c.syncer.OnEventType("m.tag", c.HandleTag)
|
||||
c.syncer.InitDoneCallback = func() {
|
||||
c.config.Session.InitialSyncDone = true
|
||||
c.ui.Render()
|
||||
}
|
||||
c.client.Syncer = c.syncer
|
||||
|
||||
debug.Print("Setting existing rooms")
|
||||
@ -224,7 +228,6 @@ func (c *Container) HandleMessage(evt *gomatrix.Event) {
|
||||
|
||||
message := mainView.ParseEvent(roomView, evt)
|
||||
if message != nil {
|
||||
debug.Print("Adding message", message.ID(), c.syncer.FirstSyncDone, c.config.Session.InitialSyncDone)
|
||||
roomView.AddMessage(message, ifc.AppendMessage)
|
||||
if c.syncer.FirstSyncDone {
|
||||
pushRules := c.PushRules().GetActions(roomView.MxRoom(), evt).Should()
|
||||
@ -307,7 +310,6 @@ func (c *Container) HandleMembership(evt *gomatrix.Event) {
|
||||
|
||||
message := mainView.ParseEvent(roomView, evt)
|
||||
if message != nil {
|
||||
debug.Print("Adding membership event", message.ID(), c.syncer.FirstSyncDone, c.config.Session.InitialSyncDone)
|
||||
// TODO this shouldn't be necessary
|
||||
//roomView.MxRoom().UpdateState(evt)
|
||||
// TODO This should probably also be in a different place
|
||||
|
@ -155,7 +155,7 @@ func (room *Room) UpdateState(event *gomatrix.Event) {
|
||||
stateKey = *event.StateKey
|
||||
}
|
||||
if event.Type != "m.room.member" {
|
||||
debug.Printf("[ROOM] Updating state %s#%s for %s", event.Type, stateKey, room.ID)
|
||||
debug.Printf("Updating state %s#%s for %s", event.Type, stateKey, room.ID)
|
||||
}
|
||||
|
||||
if event.StateKey == nil {
|
||||
|
@ -28,7 +28,6 @@ import (
|
||||
|
||||
type SyncerSession interface {
|
||||
GetRoom(id string) *rooms.Room
|
||||
SetInitialSyncDone()
|
||||
GetUserID() string
|
||||
}
|
||||
|
||||
@ -36,9 +35,10 @@ type SyncerSession interface {
|
||||
// replace parts of this default syncer (e.g. the ProcessResponse method). The default syncer uses the observer
|
||||
// pattern to notify callers about incoming events. See GomuksSyncer.OnEventType for more information.
|
||||
type GomuksSyncer struct {
|
||||
Session SyncerSession
|
||||
listeners map[string][]gomatrix.OnEventListener // event type to listeners array
|
||||
FirstSyncDone bool
|
||||
Session SyncerSession
|
||||
listeners map[string][]gomatrix.OnEventListener // event type to listeners array
|
||||
FirstSyncDone bool
|
||||
InitDoneCallback func()
|
||||
}
|
||||
|
||||
// NewGomuksSyncer returns an instantiated GomuksSyncer
|
||||
@ -81,8 +81,8 @@ func (s *GomuksSyncer) ProcessResponse(res *gomatrix.RespSync, since string) (er
|
||||
}
|
||||
}
|
||||
|
||||
if since == "" {
|
||||
s.Session.SetInitialSyncDone()
|
||||
if since == "" && s.InitDoneCallback != nil {
|
||||
s.InitDoneCallback()
|
||||
}
|
||||
s.FirstSyncDone = true
|
||||
|
||||
|
@ -234,6 +234,7 @@ func (view *MessageView) replaceBuffer(original messages.UIMessage, new messages
|
||||
|
||||
if start == -1 {
|
||||
debug.Print("Called replaceBuffer() with message that was not in the buffer:", original.ID())
|
||||
debug.PrintStack()
|
||||
view.appendBuffer(new)
|
||||
return
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user