Update of /cvsroot/radmind/radmind-assistant/rsm
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv25699
Modified Files:
RSMLoadsetManager.m
Log Message:
Fix for exception thrown because code treated dictionary like string.
Index: RSMLoadsetManager.m
===================================================================
RCS file: /cvsroot/radmind/radmind-assistant/rsm/RSMLoadsetManager.m,v
retrieving revision 1.44
retrieving revision 1.45
diff -C2 -d -r1.44 -r1.45
*** RSMLoadsetManager.m 9 Apr 2006 20:00:28 -0000 1.44
--- RSMLoadsetManager.m 1 Aug 2006 16:43:04 -0000 1.45
***************
*** 596,600 ****
@"-d", [[ self delegate ] sessionTmpDirectory ], @"--", nil ];
args = [ args arrayByAddingObjectsFromArray: objectsToDelete ];
-
message = [ NSString stringWithFormat: @"Deleting..." ];
break;
--- 596,599 ----
***************
*** 618,624 ****
- ( void )checkInLoadset: ( id )loadset
{
! NSString *loadsetPath = loadset;
NSString *newpath = nil;
newpath = [ NSString stringWithFormat: @"%@/%@", @"/var/radmind/transcript",
[ loadsetPath lastPathComponent ]];
--- 617,624 ----
- ( void )checkInLoadset: ( id )loadset
{
! NSString *loadsetPath;
NSString *newpath = nil;
+ loadsetPath = [ loadset objectForKey: @"RadmindServerItemPath" ];
newpath = [ NSString stringWithFormat: @"%@/%@", @"/var/radmind/transcript",
[ loadsetPath lastPathComponent ]];
|