about summary refs log tree commit diff stats
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
authorSteffen Jaeckel <jaeckel-floss@eyet-services.de>2023-04-14 13:18:58 +0200
committerSteffen Jaeckel <jaeckel-floss@eyet-services.de>2023-05-10 17:51:52 +0200
commit7d9c3c1b32fcf0804a384b80a3e205b646a69b71 (patch)
treefced286664663d183b68a3f354100a19daea2742 /.github/workflows/main.yml
parentfaccf24c759d7bddb4d3062c7f044e0c7640ffe7 (diff)
downloadprofani-tty-7d9c3c1b32fcf0804a384b80a3e205b646a69b71.tar.gz
fix "window `NULL` issue" (hopefully)
There were multiple reports where after a reconnect the window of the
MUC that was last opened, was empty.

`muc_join()` creates an instance of a MUC, `presence_join_room()` works
with this instance. Therefore the instance has to exist before working on
it.

I'm not sure if this really fixes the issue, but at least it didn't
happen anymore after I applied this modification.
I can't remember how I stumbled over this, either while looking at debug
logs or while looking at Valgrind output while a reconnect happened, but
something went wrong. Then I came to the conclusion that this may fix
the issue and for now it did ... maybe it comes back, then my RCA was
wrong.

Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
Diffstat (limited to '.github/workflows/main.yml')
0 files changed, 0 insertions, 0 deletions
-0700 committer Kartik Agaram <vc@akkartik.com> 2020-08-28 23:24:04 -0700 6733 - read utf-8 'grapheme' from byte stream' href='/akkartik/mu/commit/112read-byte.subx?h=main&id=cd94852dbc713ff38f38a30d6e5fb4675606823c'>cd94852d ^
0e9503d7 ^
cd94852d ^

bd6f1928 ^

f1eade72 ^
63b8b18e ^

c95648c9 ^
63b8b18e ^

bfcc0f85 ^
72c42f90 ^

















































63b8b18e ^
















ee9a9237 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121