Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
TelegramBot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
TelegramBot
Commits
e101cdf0
Commit
e101cdf0
authored
Dec 12, 2016
by
Armando Lüscher
Committed by
GitHub
Dec 12, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #333 from jacklul/fixes
Fixes for #331 and #332
parents
8745eecd
785b6b2c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
5 deletions
+19
-5
DB.php
src/DB.php
+18
-4
ServerResponse.php
src/Entities/ServerResponse.php
+1
-1
No files found.
src/DB.php
View file @
e101cdf0
...
...
@@ -720,7 +720,9 @@ class DB
self
::
insertChat
(
$chat
,
$date
,
$migrate_to_chat_id
);
//Insert user and the relation with the chat
self
::
insertUser
(
$from
,
$date
,
$chat
);
if
(
is_object
(
$from
))
{
self
::
insertUser
(
$from
,
$date
,
$chat
);
}
//Insert the forwarded message user in users table
if
(
$forward_from
instanceof
User
)
{
...
...
@@ -769,7 +771,12 @@ class DB
'
);
$message_id
=
$message
->
getMessageId
();
$from_id
=
$from
->
getId
();
if
(
is_object
(
$from
))
{
$from_id
=
$from
->
getId
();
}
else
{
$from_id
=
null
;
}
$reply_to_message
=
$message
->
getReplyToMessage
();
$reply_to_message_id
=
null
;
...
...
@@ -871,7 +878,9 @@ class DB
self
::
insertChat
(
$chat
,
$edit_date
);
//Insert user and the relation with the chat
self
::
insertUser
(
$from
,
$edit_date
,
$chat
);
if
(
is_object
(
$from
))
{
self
::
insertUser
(
$from
,
$edit_date
,
$chat
);
}
try
{
$sth
=
self
::
$pdo
->
prepare
(
'
...
...
@@ -882,7 +891,12 @@ class DB
'
);
$message_id
=
$edited_message
->
getMessageId
();
$from_id
=
$from
->
getId
();
if
(
is_object
(
$from
))
{
$from_id
=
$from
->
getId
();
}
else
{
$from_id
=
null
;
}
$text
=
$edited_message
->
getText
();
$caption
=
$edited_message
->
getCaption
();
...
...
src/Entities/ServerResponse.php
View file @
e101cdf0
...
...
@@ -101,8 +101,8 @@ class ServerResponse extends Entity
$result_object_types
=
[
'total_count'
=>
'UserProfilePhotos'
,
//Response from getUserProfilePhotos
'file_id'
=>
'File'
,
//Response from getFile
'title'
=>
'Chat'
,
//Response from getChat
'username'
=>
'User'
,
//Response from getMe
'id'
=>
'Chat'
,
//Response from getChat
'user'
=>
'ChatMember'
,
//Response from getChatMember
'url'
=>
'WebhookInfo'
,
//Response from getWebhookInfo
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment