mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 03:20:09 +00:00
22 lines
366 B
Objective-C
22 lines
366 B
Objective-C
//
|
|
// BITFeedbackMessageAttachment+QLPreviewItem.m
|
|
// HockeySDK
|
|
//
|
|
// Created by Moritz Haarmann on 30.04.14.
|
|
//
|
|
//
|
|
|
|
#import "BITFeedbackMessageAttachment+QLPreviewItem.h"
|
|
|
|
@implementation BITFeedbackMessageAttachment (QLPreviewItem)
|
|
|
|
- (NSString *)previewItemTitle {
|
|
return self.originalFilename;
|
|
}
|
|
|
|
- (NSURL *)previewItemURL {
|
|
return self.localURL;
|
|
}
|
|
|
|
@end
|