forked from friendica/friendica-addons
Merge https://github.com/friendica/friendica-addons into apull
This commit is contained in:
commit
3b104218cf
|
@ -421,11 +421,22 @@ function twitter_shortenmsg($b) {
|
||||||
if ((strlen(trim($origmsg)) <= ($max_char - 3)) AND strpos($origmsg, $msglink))
|
if ((strlen(trim($origmsg)) <= ($max_char - 3)) AND strpos($origmsg, $msglink))
|
||||||
return(trim($origmsg));
|
return(trim($origmsg));
|
||||||
|
|
||||||
if (strlen($msglink) > 20)
|
// Preserve the unshortened link
|
||||||
$msglink = short_link($msglink);
|
$orig_link = $msglink;
|
||||||
|
|
||||||
if (strlen(trim($msg." ".$msglink)) > ($max_char - 3)) {
|
//if (strlen($msglink) > 20)
|
||||||
$msg = substr($msg, 0, ($max_char - 3) - (strlen($msglink)));
|
// $msglink = short_link($msglink);
|
||||||
|
//
|
||||||
|
//if (strlen(trim($msg." ".$msglink)) > ($max_char - 3)) {
|
||||||
|
// $msg = substr($msg, 0, ($max_char - 3) - (strlen($msglink)));
|
||||||
|
|
||||||
|
// Just replace the message link with a 15 character long string
|
||||||
|
// Twitter shortens it anyway to this length
|
||||||
|
if (trim($msglink) <> '')
|
||||||
|
$msglink = "123456789012345";
|
||||||
|
|
||||||
|
if (strlen(trim($msg." ".$msglink)) > ($max_char)) {
|
||||||
|
$msg = substr($msg, 0, ($max_char) - (strlen($msglink)));
|
||||||
$lastchar = substr($msg, -1);
|
$lastchar = substr($msg, -1);
|
||||||
$msg = substr($msg, 0, -1);
|
$msg = substr($msg, 0, -1);
|
||||||
$pos = strrpos($msg, "\n");
|
$pos = strrpos($msg, "\n");
|
||||||
|
@ -440,7 +451,8 @@ function twitter_shortenmsg($b) {
|
||||||
while (strpos($msg, " ") !== false)
|
while (strpos($msg, " ") !== false)
|
||||||
$msg = str_replace(" ", " ", $msg);
|
$msg = str_replace(" ", " ", $msg);
|
||||||
|
|
||||||
return(trim($msg." ".$msglink));
|
//return(trim($msg." ".$msglink));
|
||||||
|
return(trim($msg." ".$orig_link));
|
||||||
}
|
}
|
||||||
|
|
||||||
function twitter_post_hook(&$a,&$b) {
|
function twitter_post_hook(&$a,&$b) {
|
||||||
|
|
|
@ -19,6 +19,6 @@ question).
|
||||||
|
|
||||||
If the test is successful then proceed with copying the webrtc instance you
|
If the test is successful then proceed with copying the webrtc instance you
|
||||||
would like to use and place it in the config window and save. Now when you
|
would like to use and place it in the config window and save. Now when you
|
||||||
opent he app it will load the webrtc instance for you to use.
|
open the app it will load the webrtc instance for you to use.
|
||||||
|
|
||||||
[1]: https://en.wikipedia.org/wiki/WebRTC
|
[1]: https://en.wikipedia.org/wiki/WebRTC
|
||||||
|
|
Loading…
Reference in a new issue