summary refs log tree commit diff stats
path: root/widgets/msglist.go
diff options
context:
space:
mode:
authorDaniel Xu <dxu@dxuuu.xyz>2019-08-19 22:10:48 -0700
committerDrew DeVault <sir@cmpwn.com>2019-08-20 16:03:37 +0900
commit6fcc047c3116b6ef59cae39b3beb9e815f9b62a6 (patch)
treebbe1386eae936e6d114f78ada7f23e4cba33ee93 /widgets/msglist.go
parent334ca89bea38132252d092ad6066af100768eff7 (diff)
downloadaerc-6fcc047c3116b6ef59cae39b3beb9e815f9b62a6.tar.gz
Only compile regex portion of folder filter
The code was trying to compile the `~` as well. In this case, it was
trying to match a literal `~` to the front of the supplied regex.

Fixes: 334ca89bea381 ("folder filter: only assume regex if filter is
~fmt")

Signed-off-by: Daniel Xu <dxu@dxuuu.xyz>
Diffstat (limited to 'widgets/msglist.go')
0 files changed, 0 insertions, 0 deletions
gbmor/getwtxt/blame/svc/sqlite.go?h=v0.4.13&id=e6beae32cd45ea0057e1a5bc5e4b3f2a098a1a1e'>^
37142b5 ^
a5a32e7 ^









a5a32e7 ^

a5a32e7 ^
a5a32e7 ^



a5a32e7 ^


3ea7e88 ^
a5a32e7 ^

a5a32e7 ^


40357b7 ^
a5a32e7 ^
a5a32e7 ^







d20ad73 ^

a5a32e7 ^
18fc34c ^
a5a32e7 ^




18fc34c ^
a5a32e7 ^
a5a32e7 ^
a5a32e7 ^







a5a32e7 ^






37142b5 ^

a5a32e7 ^




a5a32e7 ^


a5a32e7 ^
a5a32e7 ^
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136