Changeset 355 for TwitterIrcGateway/TwitterIrcGatewayCore/Session.cs
- Timestamp:
- 01/15/08 23:04:40 (12 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
TwitterIrcGateway/TwitterIrcGatewayCore/Session.cs
r352 r355 293 293 { 294 294 // group 読み取り 295 String path = Path.Combine(ConfigBasePath, Path.Combine(_ nick, "Groups.xml"));295 String path = Path.Combine(ConfigBasePath, Path.Combine(_username, "Groups.xml")); 296 296 if (File.Exists(path)) 297 297 { … … 325 325 lock (_groups) 326 326 { 327 String dir = Path.Combine(ConfigBasePath, _ nick);327 String dir = Path.Combine(ConfigBasePath, _username); 328 328 String path = Path.Combine(dir, "Groups.xml"); 329 329 Trace.WriteLine(String.Format("Save Group: {0}", path));
