|
@@ -296,9 +296,11 @@
|
|
|
{
|
|
|
NSNumber *stateNumber = [notification object];
|
|
|
|
|
|
- NSString * tipStr = NSLocalizedString(@"File_upload_path_new_suc",nil);
|
|
|
-
|
|
|
- if(stateNumber.integerValue == 2 ){
|
|
|
+ NSString * tipStr = @"";
|
|
|
+ if(stateNumber.integerValue == 0){
|
|
|
+ tipStr = NSLocalizedString(@"File_upload_path_new_suc",nil);
|
|
|
+ }
|
|
|
+ else if(stateNumber.integerValue == 2 ){
|
|
|
tipStr = NSLocalizedString(@"File_upload_path_new_save",nil);
|
|
|
}
|
|
|
else{
|