Changeset 891

Show
Ignore:
Timestamp:
07/17/04 05:03:38 (4 years ago)
Author:
morris
Message:

make sure to remove percent escapes when turning it into a path

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Footagehead/trunk/FHFileHandler.m

    r890 r891  
    1 /* $Id: FHFileHandler.m,v 1.5 2004/07/17 02:45:22 morris Exp $ */ 
     1/* $Id: FHFileHandler.m,v 1.6 2004/07/17 03:03:38 morris Exp $ */ 
    22 
    33/* 
     
    146146        NSString                *path, *root; 
    147147         
    148         path = [[self relativeURL] path]; 
     148        path = [[[self relativeURL] path] stringByReplacingURLPercentEscapes]; 
    149149        root = [[[self URL] path] stringByAppendingPathComponent:@".FootageheadRoot"]; 
    150150