必ずhash tagを付加するように
@@ -70,8 +70,13 @@ | ||
70 | 70 | msg = comment; |
71 | 71 | } |
72 | 72 | } |
73 | + if (IS_NULL_STR(msg)) { | |
74 | + msg = @"#iPhotoUploader"; | |
75 | + } else { | |
76 | + msg = [NSString stringWithFormat:@"%@ #iPhotoUploader", msg]; | |
77 | + } | |
73 | 78 | if (!IS_NULL_STR(msg)) { |
74 | - [m_postData setObject:[NSString stringWithFormat:@"%@ #iPhotoUploader", msg] forKey:@"message"]; | |
79 | + [m_postData setObject:msg forKey:@"message"]; | |
75 | 80 | } |
76 | 81 | |
77 | 82 | [super start]; |