Free cookie consent management tool by TermsFeed Policy Generator

Changeset 1014 for trunk


Ignore:
Timestamp:
12/17/08 16:29:28 (16 years ago)
Author:
svonolfe
Message:

Fixed client adapter (#372)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.ADODataAccess/ClientAdapter.cs

    r1009 r1014  
    207207    public override void Update(ClientInfo client) {
    208208      if (client != null) {
     209        if (client.Id == default(long)) {
     210          ClientInfo found = GetById(client.ClientId);
     211          if (found != null)
     212            client = found;
     213        }
     214
    209215        ResAdapter.Update(client);
    210216
Note: See TracChangeset for help on using the changeset viewer.