Changeset 355

Show
Ignore:
Timestamp:
01/15/08 23:04:40 (12 months ago)
Author:
tomoyo
Message:

ユーザ設定のディレクトリの作成がNICKベースになっていたのでUsernameベースにした。

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • TwitterIrcGateway/TwitterIrcGatewayCore/Session.cs

    r352 r355  
    293293        { 
    294294           // group 読み取り 
    295             String path = Path.Combine(ConfigBasePath, Path.Combine(_nick, "Groups.xml")); 
     295            String path = Path.Combine(ConfigBasePath, Path.Combine(_username, "Groups.xml")); 
    296296            if (File.Exists(path)) 
    297297            { 
     
    325325            lock (_groups) 
    326326            { 
    327                 String dir = Path.Combine(ConfigBasePath, _nick); 
     327                String dir = Path.Combine(ConfigBasePath, _username); 
    328328                String path = Path.Combine(dir, "Groups.xml"); 
    329329                Trace.WriteLine(String.Format("Save Group: {0}", path));