Innokenty Enikev před 11 roky
rodič
revize
c108795508
2 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 1 0
      chatikbot.asd
  2. 1 1
      foursquare.lisp

+ 1 - 0
chatikbot.asd

@@ -25,4 +25,5 @@
                (:file "tumblr")
                (:file "tumblr")
                (:file "patmatch")
                (:file "patmatch")
                (:file "eliza")
                (:file "eliza")
+	       (:file "foursquare")
                (:file "chatikbot")))
                (:file "chatikbot")))

+ 1 - 1
foursquare.lisp

@@ -40,7 +40,7 @@
   (when checkin
   (when checkin
     (let ((user (aget "user" checkin))
     (let ((user (aget "user" checkin))
           (venue (aget "venue" checkin)))
           (venue (aget "venue" checkin)))
-      (format nil "📍 ~@[~A~]~@[ ~A~]~@[ в ~A~]~@[ (~A)~]~@[ 📢~A~]"
+      (format nil "📍 ~@[~A~]~@[ ~A~]~@[ в ~A~]~@[ (~A)~]~@[ 📢 ~A~]"
               (aget "firstName" user) (aget "lastName" user)
               (aget "firstName" user) (aget "lastName" user)
               (aget "name" venue) (first (aget "formattedAddress" (aget "location" venue)))
               (aget "name" venue) (first (aget "formattedAddress" (aget "location" venue)))
               (aget "shout" checkin)))))
               (aget "shout" checkin)))))