Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/01/12 12:48:54 (12 years ago)
Author:
ascheibe
Message:

#1648 fixed updating of client information

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ClientUserManagement/HeuristicLab.Clients.Access/3.3/ClientInformation.cs

    r7553 r7945  
    7676      try {
    7777        AccessClient.CallAccessService(x => clientInfo = x.GetClient(clientId));
    78         if (clientInfo != null)
     78        if (clientInfo != null) {
    7979          clientExists = true;
     80          if (clientInfo.HeuristicLabVersion != ClientInformationUtils.GetHLVersion()) {
     81            clientInfo.HeuristicLabVersion = ClientInformationUtils.GetHLVersion();
     82            AccessClient.CallAccessService(x => x.UpdateClient(clientInfo));
     83          }
     84        }
    8085        errorOccured = false;
    8186        occuredException = null;
Note: See TracChangeset for help on using the changeset viewer.