Skip to content

Commit 7d8e19f

Browse files
committed
无后缀文件 - 新类型
1 parent 9af76f5 commit 7d8e19f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Coding_iOS/Controllers/CodeListViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ - (void)goToVCWith:(CodeTree_File *)codeTreeFile andRef:(NSString *)ref{
9393
vc.myProject = _myProject;
9494
vc.myCodeTree = nextCodeTree;
9595
[self.navigationController pushViewController:vc animated:YES];
96-
}else if ([@[@"file", @"image", @"sym_link"] containsObject:codeTreeFile.mode]){//文件
96+
}else if ([@[@"file", @"image", @"sym_link", @"executable"] containsObject:codeTreeFile.mode]){//文件
9797
CodeFile *nextCodeFile = [CodeFile codeFileWithRef:ref andPath:codeTreeFile.path];
9898
CodeViewController *vc = [CodeViewController codeVCWithProject:_myProject andCodeFile:nextCodeFile];
9999
[self.navigationController pushViewController:vc animated:YES];

0 commit comments

Comments
 (0)