Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_sdk_framework
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Manos Chorianopoulos
2025-07-28 14:52:47 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2df349eb6c5b13024e494154d4375a2c0bf1204e
2df349eb
1 parent
fb8d9a8a
MerchantCategoryModel fix 3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
SwiftWarplyFramework/SwiftWarplyFramework/models/MerchantCategoryModel.swift
SwiftWarplyFramework/SwiftWarplyFramework/models/MerchantCategoryModel.swift
View file @
2df349e
...
...
@@ -128,7 +128,7 @@ public class MerchantCategoryModel: NSObject {
/// Check if this category has child categories
public
var
hasChildren
:
Bool
{
return
!
self
.
children
.
isEmpty
return
!
(
self
.
children
??
[])
.
isEmpty
}
}
...
...
Please
register
or
login
to post a comment