Skip to content

Commit

Permalink
fix: webservice null pointer exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolife999 committed Oct 12, 2023
1 parent 4a44597 commit 1769e5c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -378,8 +378,7 @@ public String getAClientTable(boolean isSourceListTable) throws ArcException {
+ (isSourceListTable ? "" : "NOT") + " like " + requete.quoteText("%id\\_source%"));

String selectedTableName = UtilitaireDao.get(0).getString(connection, requete);

return this.client + selectedTableName.substring(this.client.length());
return selectedTableName==null? null : this.client + selectedTableName.substring(this.client.length());

}

Expand Down

0 comments on commit 1769e5c

Please sign in to comment.