From 9820eb436edc2b7d0b5f33d477e763cbdafd7c55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Floure?= Date: Wed, 29 Nov 2017 21:28:06 +0100 Subject: [PATCH] Fix type issue in example config file --- config/config.example.exs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.example.exs b/config/config.example.exs index dd1dfc3..74f034e 100644 --- a/config/config.example.exs +++ b/config/config.example.exs @@ -9,8 +9,8 @@ use Mix.Config # 3rd-party users, it should be done in your "mix.exs" file. config :telegram_mt, - api_id: "00000", - api_hash: "00000", + api_id: 00000, # must be an integer! + api_hash: "00000abcd", # must be a string! msg_max_retry_count: 2 # It is also possible to import configuration files, relative to this -- 2.45.2