summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0084/stanza.py
diff options
context:
space:
mode:
Diffstat (limited to 'slixmpp/plugins/xep_0084/stanza.py')
-rw-r--r--slixmpp/plugins/xep_0084/stanza.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/slixmpp/plugins/xep_0084/stanza.py b/slixmpp/plugins/xep_0084/stanza.py
index a2132c0b..ed83526e 100644
--- a/slixmpp/plugins/xep_0084/stanza.py
+++ b/slixmpp/plugins/xep_0084/stanza.py
@@ -80,16 +80,16 @@ class Info(ElementBase):
self._set_int('bytes', value)
def get_height(self) -> int:
- self._get_int('height')
+ return self._get_int('height')
def set_height(self, value: int):
self._set_int('height', value)
def get_width(self) -> int:
- self._get_int(self, 'width')
+ return self._get_int('width')
def set_width(self, value: int):
- self._set_int('with', value)
+ self._set_int('width', value)
class Pointer(ElementBase):