fix(Communities): adjust discord import error codes
Those have been changed in status-go, resulting in wrong visualization of import warnings and errors. This commit adjusts them so they match the correct codes again.
This commit is contained in:
parent
02d3398fbc
commit
cabfaf1ed6
|
@ -501,9 +501,9 @@ QtObject {
|
|||
}
|
||||
|
||||
enum DiscordImportErrorCode {
|
||||
Unknown = 0,
|
||||
Warning = 1,
|
||||
Error = 2
|
||||
Unknown = 1,
|
||||
Warning = 2,
|
||||
Error = 3
|
||||
}
|
||||
|
||||
readonly property int communityImported: 0
|
||||
|
|
Loading…
Reference in New Issue