2
0

WFCCMediaMessageContent.m 398 B

12345678910111213141516171819
  1. //
  2. // WFCCMediaMessageContent.m
  3. // WFChatClient
  4. //
  5. // Created by heavyrain on 2017/9/6.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import "WFCCMediaMessageContent.h"
  9. #import "WFCCUtilities.h"
  10. #import "Common.h"
  11. @implementation WFCCMediaMessageContent
  12. - (NSString *)localPath {
  13. _localPath = [WFCCUtilities getSendBoxFilePath:_localPath];
  14. return _localPath;
  15. }
  16. @end