Skip to content

Commit bce1262

Browse files
m-kuhntroopa81
andauthoredMar 4, 2019
replace double quote with simple quote
Co-Authored-By: troopa81 <julien.cabieces@oslandia.com>
1 parent e9a9d97 commit bce1262

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/providers/postgres/qgspostgresprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4341,7 +4341,7 @@ QVariant QgsPostgresProvider::parseMultidimensionalArray( const QString &txt )
43414341
}
43424342

43434343
values.append( text.left( ++i ) );
4344-
i = text.indexOf( ",", i );
4344+
i = text.indexOf( ',', i );
43454345
i = i > 0 ? text.indexOf( "{", i ) : -1;
43464346
if ( i == -1 )
43474347
break;

0 commit comments

Comments
 (0)
Please sign in to comment.