mirror of
https://github.com/Matte23/circolapp.git
synced 2025-12-06 07:29:10 +00:00
Change database list item delimiter
This commit is contained in:
@@ -27,7 +27,7 @@ class Converters {
|
||||
val list: MutableList<String> = mutableListOf()
|
||||
|
||||
if (data != null) {
|
||||
for (attachment in data.split(",")) {
|
||||
for (attachment in data.split("˜")) {
|
||||
list.add(attachment)
|
||||
}
|
||||
}
|
||||
@@ -40,7 +40,7 @@ class Converters {
|
||||
var string = ""
|
||||
|
||||
for (attachment in list) {
|
||||
string += "$attachment,"
|
||||
string += "$attachment˜"
|
||||
}
|
||||
|
||||
return string
|
||||
|
||||
Reference in New Issue
Block a user