You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,8 @@ By using Thunderbird for Android Beta, you have early access to current developm
22
22
23
23
Check out the [Release Notes](https://github.com/thunderbird/thunderbird-android/releases) to find out what changed in each version of Thunderbird for Android.
24
24
25
+
The SHA-256 fingerprints for our signing certificates are available in [SECURITY.md](./SECURITY.md#verifying-fingerprints).
26
+
25
27
## Need Help? Found a bug? Have an idea? Want to chat?
26
28
27
29
If the app is not behaving like it should, or you are not sure if you've encountered a bug:
Copy file name to clipboardExpand all lines: feature/navigation/drawer/dropdown/src/main/kotlin/net/thunderbird/feature/navigation/drawer/dropdown/domain/usecase/GetDisplayTreeFolder.kt
Copy file name to clipboardExpand all lines: feature/navigation/drawer/dropdown/src/test/kotlin/net/thunderbird/feature/navigation/drawer/dropdown/domain/usecase/GetDisplayTreeFolderTest.kt
+15-11
Original file line number
Diff line number
Diff line change
@@ -199,9 +199,9 @@ class GetDisplayTreeFolderTest {
199
199
children = persistentListOf(
200
200
DisplayTreeFolder(
201
201
displayFolder =DisplayAccountFolder(
202
-
accountId ="accountId",
202
+
accountId ="placeholder",
203
203
folder =Folder(
204
-
id =0,
204
+
id =1L,
205
205
name ="(Unnamed)/(Unnamed)",
206
206
type =FolderType.REGULAR,
207
207
isLocalOnly =false,
@@ -238,8 +238,8 @@ class GetDisplayTreeFolderTest {
238
238
),
239
239
DisplayTreeFolder(
240
240
displayFolder =DisplayAccountFolder(
241
-
accountId ="accountId",
242
-
folder =Folder(id =0, name ="valid1", type =FolderType.REGULAR, isLocalOnly =false),
241
+
accountId ="placeholder",
242
+
folder =Folder(id =2, name ="valid1", type =FolderType.REGULAR, isLocalOnly =false),
243
243
isInTopGroup =true,
244
244
unreadMessageCount =0,
245
245
starredMessageCount =0,
@@ -250,9 +250,9 @@ class GetDisplayTreeFolderTest {
250
250
children = persistentListOf(
251
251
DisplayTreeFolder(
252
252
displayFolder =DisplayAccountFolder(
253
-
accountId ="accountId",
253
+
accountId ="placeholder",
254
254
folder =Folder(
255
-
id =0,
255
+
id =3L,
256
256
name ="valid1/(Unnamed)",
257
257
type =FolderType.REGULAR,
258
258
isLocalOnly =false,
@@ -321,7 +321,8 @@ class GetDisplayTreeFolderTest {
321
321
children = persistentListOf(
322
322
createDisplayTreeFolder(
323
323
displayFolder = createDisplayAccountFolder(
324
-
folderId =0L,
324
+
accountId ="placeholder",
325
+
folderId =1L,
325
326
folderName ="folderLevel1",
326
327
unreadMessageCount =0,
327
328
starredMessageCount =0,
@@ -379,7 +380,8 @@ class GetDisplayTreeFolderTest {
379
380
children = persistentListOf(
380
381
createDisplayTreeFolder(
381
382
displayFolder = createDisplayAccountFolder(
382
-
folderId =0,
383
+
accountId ="placeholder",
384
+
folderId =1,
383
385
folderName ="level1",
384
386
unreadMessageCount =0,
385
387
starredMessageCount =0,
@@ -390,7 +392,8 @@ class GetDisplayTreeFolderTest {
390
392
children = persistentListOf(
391
393
createDisplayTreeFolder(
392
394
displayFolder = createDisplayAccountFolder(
393
-
folderId =0,
395
+
accountId ="placeholder",
396
+
folderId =2L,
394
397
folderName ="level1/level2",
395
398
unreadMessageCount =0,
396
399
starredMessageCount =0,
@@ -427,9 +430,10 @@ class GetDisplayTreeFolderTest {
0 commit comments