diff options
author | fiaxh <git@lightrise.org> | 2018-11-14 18:17:10 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2018-11-27 03:38:42 +0100 |
commit | 2208ff9799b8b551b4da5227a32a09f9e00ffb6a (patch) | |
tree | 9c8c4d91f6b4c3e9e825bf5148db9932a3ecc97d /libdino/src/entity | |
parent | d9cbf571b0a5154d524ca65485dbb86a51268a06 (diff) | |
download | dino-2208ff9799b8b551b4da5227a32a09f9e00ffb6a.tar.gz dino-2208ff9799b8b551b4da5227a32a09f9e00ffb6a.zip |
Restructure (http) file provider flow: Separate download&get_info, download in provider, move XmppStreamModule into xmpp-vala
Diffstat (limited to 'libdino/src/entity')
-rw-r--r-- | libdino/src/entity/file_transfer.vala | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libdino/src/entity/file_transfer.vala b/libdino/src/entity/file_transfer.vala index be472796..2c45aa08 100644 --- a/libdino/src/entity/file_transfer.vala +++ b/libdino/src/entity/file_transfer.vala @@ -18,6 +18,12 @@ public class FileTransfer : Object { public Account account { get; set; } public Jid counterpart { get; set; } public Jid ourpart { get; set; } + public Jid? from { + get { return direction == DIRECTION_SENT ? ourpart : counterpart; } + } + public Jid? to { + get { return direction == DIRECTION_SENT ? counterpart : ourpart; } + } public bool direction { get; set; } public DateTime time { get; set; } public DateTime? local_time { get; set; } @@ -47,7 +53,7 @@ public class FileTransfer : Object { set { server_file_name_ = value; } } public string path { get; set; } - public string mime_type { get; set; } + public string? mime_type { get; set; } public int size { get; set; } public State state { get; set; } |